From 8afe97a360dd358cd44ac5ba64bced99c6c93ff2 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sat, 18 Oct 2025 11:32:41 +0100 Subject: [PATCH] gnu: Add python-snakesay. * gnu/packages/python-xyz.scm (python-snakesay): New variable. Change-Id: I90672801190f08aa659f1a2f3bf646931a373e70 --- gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4310a8d7311c20b459fa108450d444aaaa459e95..96fb306d7eb5dffcec9f399030f8a6a4ac5471b1 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")