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

commit 4a99a3d82ef77f5f81b35c9d6d8102c3084aeecd
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Sun Aug 10 18:03:43 2025 +0100

    gnu: python-log-symbols: Move to python-xyz.
    
    * gnu/packages/terminals.scm (python-log-symbols): Move from here ...
    * gnu/packages/python-xyz.scm: ... to here.
    
    Change-Id: I40b1647eaf6c69f4cbca699bd0d1f4833e2ad438
---
 gnu/packages/python-xyz.scm | 24 ++++++++++++++++++++++++
 gnu/packages/terminals.scm  | 24 ------------------------
 2 files changed, 24 insertions(+), 24 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f5ad2450a5..5b38d7bb37 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1000,6 +1000,30 @@ comparison operators, as defined in the original
 @url{http://goessner.net/articles/JsonPath/, JSONPath} proposal.")
     (license license:asl2.0)))
 
+(define-public python-log-symbols
+  (package
+    (name "python-log-symbols")
+    (version "0.0.14")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "log_symbols" version))
+       (sha256
+        (base32 "0mh5d0igw33libfmbsr1ri1p1y644p36nwaa2w6kzrd8w5pvq2yg"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list #:tests? #f))         ;no tests in PyPI archive, tests depend on 
Nose
+    (native-inputs
+     (list python-setuptools))
+    (propagated-inputs
+     (list python-colorama))
+    (home-page "https://github.com/manrajgrover/py-log-symbols";)
+    (synopsis "Python library with graphical symbols for logging on the 
terminal")
+    (description
+     "This package provides a Python library with graphical symbols that can
+be displayed on the terminal, with color if possible, for logging purposes.")
+    (license license:expat)))
+
 (define-public python-multiplex
   (package
     (name "python-multiplex")
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index d756b1c3c5..dd943e07e0 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -1147,30 +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-log-symbols
-  (package
-    (name "python-log-symbols")
-    (version "0.0.14")
-    (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "log_symbols" version))
-              (sha256
-               (base32
-                "0mh5d0igw33libfmbsr1ri1p1y644p36nwaa2w6kzrd8w5pvq2yg"))))
-    (build-system pyproject-build-system)
-    (arguments
-     (list #:tests? #f))         ;no tests in PyPI archive, tests depend on 
Nose
-    (native-inputs
-     (list python-setuptools))
-    (propagated-inputs
-     (list python-colorama))
-    (home-page "https://github.com/manrajgrover/py-log-symbols";)
-    (synopsis "Python library with graphical symbols for logging on the 
terminal")
-    (description "This package provides a Python library with graphical symbols
-that can be displayed on the terminal, with color if possible, for logging
-purposes.")
-    (license license:expat)))
-
 (define-public python-spinners
   (package
     (name "python-spinners")

Reply via email to