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

commit 0ab913fdba0ba08b3a370e91dfd30f6c47e704f7
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Sun Aug 10 18:06:00 2025 +0100

    gnu: python-spinners: Move to python-xyz.
    
    * gnu/packages/terminals.scm (python-spinners): Move from here ...
    * gnu/packages/python-xyz.scm: ... to here.
    
    Change-Id: I382935461c52766a98ae3b103e5309ee43651a09
---
 gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
 gnu/packages/terminals.scm  | 21 ---------------------
 2 files changed, 22 insertions(+), 21 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 88983b743c..32971bf54c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1343,6 +1343,28 @@ three consecutive points in a polyline or polygon
 @end itemize")
     (license license:expat)))
 
+(define-public python-spinners
+  (package
+    (name "python-spinners")
+    (version "0.0.24")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "spinners" version))
+       (sha256
+        (base32 "0zz2z6dpdjdq5z8m8w8dfi8by0ih1zrdq0caxm1anwhxg2saxdhy"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list #:tests? #f))         ;no tests in PyPI archive, tests depend on 
Nose
+    (native-inputs
+     (list python-setuptools))
+    (home-page "https://github.com/manrajgrover/py-spinners";)
+    (synopsis "Python library with graphical spinners for the terminal")
+    (description
+     "Spinners is a Python library that contains graphical spinners that can
+be displayed terminal.")
+    (license license:expat)))
+
 (define-public python-streamtracer
   (package
     (name "python-streamtracer")
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 42d459d424..3238dc72dc 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -1147,27 +1147,6 @@ features string-like objects which carry formatting 
information, per-line
 fullscreen terminal rendering, and keyboard input event reporting.")
     (license license:expat)))
 
-(define-public python-spinners
-  (package
-    (name "python-spinners")
-    (version "0.0.24")
-    (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "spinners" version))
-              (sha256
-               (base32
-                "0zz2z6dpdjdq5z8m8w8dfi8by0ih1zrdq0caxm1anwhxg2saxdhy"))))
-    (build-system pyproject-build-system)
-    (arguments
-     (list #:tests? #f))         ;no tests in PyPI archive, tests depend on 
Nose
-    (native-inputs
-     (list python-setuptools))
-    (home-page "https://github.com/manrajgrover/py-spinners";)
-    (synopsis "Python library with graphical spinners for the terminal")
-    (description "Spinners is a Python library that contains graphical spinners
-that can be displayed terminal.")
-    (license license:expat)))
-
 (define-public tmate
   (package
     (name "tmate")

Reply via email to