diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-09 16:35:40 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-09 22:35:00 +0100 |
| commit | 1cc0eb0598788aed1982fcd1b6aad8c464122a54 (patch) | |
| tree | 527244f1cd81943159ee8f19a12a3a87ded0d192 /gnu/packages/python-xyz.scm | |
| parent | 80f6160ee84ea77abb928af5de7121b16e98d8f5 (diff) | |
gnu: Add python-couleur.
* gnu/packages/python-xyz.scm (python-couleur): New variable.
Change-Id: I86205a7cbfd4429dcf82bae035e045092a230c3f
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 21 |
1 files changed, 21 insertions, 0 deletions
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") |
