sharlatan pushed a commit to branch master in repository guix. commit 1cc0eb0598788aed1982fcd1b6aad8c464122a54 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Fri May 9 16:35:40 2025 +0100
gnu: Add python-couleur. * gnu/packages/python-xyz.scm (python-couleur): New variable. Change-Id: I86205a7cbfd4429dcf82bae035e045092a230c3f --- gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4c7c4c13a2..baba2e8d13 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -553,6 +553,27 @@ using NumPy-like idioms.") line drawing algorithm}.") (license license:expat))) +(define-public python-couleur + (package + (name "python-couleur") + (version "0.7.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "couleur" version)) + (sha256 + (base32 "1fk175k6l8isx43jmh7n7xyzb18ysdixzr74dxqqhpyd5sbsb5hy")))) + (build-system pyproject-build-system) + (native-inputs + (list python-setuptools + python-wheel)) + (home-page "https://github.com/gabrielfalcao/couleur") + (synopsis "ANSI terminal tool for Python") + (description + "This package provides an ANSI terminal tool for Python, colored shell +and other handy fancy features.") + (license license:lgpl3+))) + (define-public python-crc (package (name "python-crc")