summaryrefslogtreecommitdiff
path: root/gnu/packages/python-build.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/python-build.scm')
-rw-r--r--gnu/packages/python-build.scm20
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 4e520d67c82..77d24d2ea74 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -82,6 +82,26 @@
run simple @code{argparse} parsers from function signatures.")
(license license:lgpl3+)))
+(define-public python-colorama
+ (package
+ (name "python-colorama")
+ (version "0.4.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "colorama" version))
+ (sha256
+ (base32 "0i3fpq0w5mbfdpy3z9p5raw4fg17jxr6jwh5l8qhavpdnxf5ys88"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-hatchling
+ python-pytest-bootstrap))
+ (home-page "https://pypi.org/project/colorama/")
+ (synopsis "Colored terminal text rendering for Python")
+ (description
+ "Colorama is a Python library for rendering colored terminal text.")
+ (license license:bsd-3)))
+
(define-public python-pathspec
(package
(name "python-pathspec")