diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-05-03 10:34:23 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-05-05 22:38:17 +0200 |
commit | 1f5eef839150506352ad15fd0a79a03a45cf4bcf (patch) | |
tree | 27de41787441205e9919e65b0d9f34c578c151a0 | |
parent | 79d13482e49efd86ec992af83daf5209b12f9ff1 (diff) | |
download | guix-1f5eef839150506352ad15fd0a79a03a45cf4bcf.tar.gz guix-1f5eef839150506352ad15fd0a79a03a45cf4bcf.zip |
gnu: Add python-termcolor-1.
* gnu/packages/python-xyz.scm (python-termcolor-1): New variable.
Change-Id: I1aca97b6b7976cb698131c3a0be73e4798bef6d6
-rw-r--r-- | gnu/packages/python-xyz.scm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e96044d816..981d915db5 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -16522,6 +16522,20 @@ a hash value.") "This package provides ANSII Color formatting for output in terminals.") (license license:expat))) +(define-public python-termcolor-1 + (package + (inherit python-termcolor) + (version "1.1.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "termcolor" version)) + (sha256 + (base32 + "0fv1vq14rpqwgazxg4981904lfyp84mnammw7y046491cv76jv8x")))) + ;; There are no tests + (arguments (list #:tests? #false)))) + (define-public python-terminaltables (package (name "python-terminaltables") |