diff options
| author | Patrick Norton <patrick.147.norton@gmail.com> | 2025-11-09 14:58:24 -0500 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-11-15 17:32:47 +0100 |
| commit | c9e598ffe0998fa427131ca9ca468f77b7b57938 (patch) | |
| tree | facacbaae2c6e9836f5c4ed19f6e25f5fa21ffea /gnu/packages/python-xyz.scm | |
| parent | 0c6225f66f73771fcbcf443ba8fca0725bbaf65a (diff) | |
gnu: Add python-pysol-cards.
* gnu/packages/python-xyz.scm (python-pysol-cards): New variable.
Change-Id: Ida854173a5b06f526e36c662482e917c7e752ef0
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 11d73b36249..b69da274321 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -21620,6 +21620,39 @@ into aligned columns.") objects, patterned after the Mocha library for Ruby.") (license license:bsd-3))) +(define-public python-pysol-cards + (package + (name "python-pysol-cards") + (version "0.24.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pysol_cards" version)) + (sha256 + (base32 "0jsd7mqp0ak8zidg540b9hjncgx8diy9lv85zj6mi88sm0nlk1d9")))) + (build-system pyproject-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key test-flags tests? #:allow-other-keys) + (when tests? + (apply invoke + "python" + "-m" + "unittest" + "discover" + "tests" + test-flags))))))) + (native-inputs (list python-setuptools python-wheel)) + (home-page "https://github.com/shlomif/pysol_cards") + (synopsis "Deal PySol FC Cards") + (description + "The pysol-cards python modules provide code to generate the initial deals of +some PySol games.") + (license license:expat))) + (define-public python-inflect (package (name "python-inflect") |
