From 1cc0eb0598788aed1982fcd1b6aad8c464122a54 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 9 May 2025 16:35:40 +0100 Subject: [PATCH] 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 4c7c4c13a2d078aff9b39bed0dec7cdea6c4a279..baba2e8d1305de07e48e53926e12d10d5a251537 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")