diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-18 11:32:41 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-18 12:54:05 +0100 |
| commit | 8afe97a360dd358cd44ac5ba64bced99c6c93ff2 (patch) | |
| tree | e639447335112be63211cab2e8af21e55a93543a /gnu/packages/python-xyz.scm | |
| parent | de0c4910c80a5216efde692a36c8ce1039cd8faa (diff) | |
gnu: Add python-snakesay.
* gnu/packages/python-xyz.scm (python-snakesay): New variable.
Change-Id: I90672801190f08aa659f1a2f3bf646931a373e70
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4310a8d731..96fb306d7e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1668,6 +1668,31 @@ three consecutive points in a polyline or polygon @end itemize") (license license:expat))) +(define-public python-snakesay + (package + (name "python-snakesay") + (version "0.10.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pythonanywhere/snakesay") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06p776nf2v5r9643i6f7hv8z984bjiz0k6z9whzla6b2y637mk93")))) + (build-system pyproject-build-system) + (arguments + ;; XXX: We don't have python-uv-build yet. + (list #:build-backend "setuptools.build_meta")) + (native-inputs (list python-pytest python-setuptools)) + (home-page "https://github.com/pythonanywhere/snakesay") + (synopsis "Like @command{cowsay} but with Python flavor") + (description + "This package provides a simple ASCII art pictures generator of a +Snake with a message.") + (license license:expat))) + (define-public python-spinners (package (name "python-spinners") |
