guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit feaf82cbb76cc9ed41848d15004bff9b62474eb9
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Oct 31 02:10:26 2025 +0100

    gnu: python-colorama: Move to (gnu packages python-build).
    
    * gnu/packages/python-xyz.scm (python-colorama): Move from here…
    * gnu/packages/python-build.scm (python-colorama): …to here.
    [native-inputs]: Replace python-pytest by python-pytest-bootstrap.
    
    Change-Id: I3ac5f6611a411458a0aeca0d6d4a2af79ce49e54
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-build.scm | 20 ++++++++++++++++++++
 gnu/packages/python-xyz.scm   | 18 ------------------
 2 files changed, 20 insertions(+), 18 deletions(-)

diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 5b92ec1b13..8dbb401122 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")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2544511e48..773b24e7c4 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19805,24 +19805,6 @@ for the module to work under Python 3.3.")
     ;; Either or both of these licenses may be selected.
     (license (list license:lgpl2.1+ license:bsd-3))))
 
-(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))
-   (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)))
-
 ;; XXX: Not maintained since 2012.
 (define-public python-monthdelta
   (package

Reply via email to