guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 84da3c3aee543f876bcddb147101d4427ea407c3
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Aug 10 18:01:01 2025 +0100
gnu: python-halo: Move to python-xyz.
* gnu/packages/terminals.scm (python-halo): Move from here ...
* gnu/packages/python-xyz.scm: ... to here.
Change-Id: Ie3bf1a898c949162a6f54d37ff44f362cda5d335
---
gnu/packages/python-xyz.scm | 29 +++++++++++++++++++++++++++++
gnu/packages/terminals.scm | 27 ---------------------------
2 files changed, 29 insertions(+), 27 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0d5cd28bcf..e515cbf6d0 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -137,6 +137,7 @@
;;; Copyright © 2023 Amade Nemes <[email protected]>
;;; Copyright © 2023 Bruno Victal <[email protected]>
;;; Copyright © 2023 Lu Hui <[email protected]>
+;;; Copyright © 2023 Jean-Pierre De Jesus DIAZ <[email protected]>
;;; Copyright © 2023 Kaelyn Takata <[email protected]>
;;; Copyright © 2023 dan <[email protected]>
;;; Copyright © 2023 Dominik Delgado Steuter <[email protected]>
@@ -875,6 +876,34 @@ part of @url{https://github.com/hgrecco/pint, Pint}, the
Python units
package. ")
(license license:bsd-3)))
+(define-public python-halo
+ (package
+ (name "python-halo")
+ (version "0.0.31")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "halo" version))
+ (sha256
+ (base32 "1mn97h370ggbc9vi6x8r6akd5q8i512y6kid2nvm67g93r9a6rvv"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:tests? #f)) ;no tests in PyPI archive, no tags in Git
+ (native-inputs
+ (list python-setuptools))
+ (propagated-inputs
+ (list python-colorama
+ python-log-symbols
+ python-six
+ python-spinners
+ python-termcolor))
+ (home-page "https://github.com/manrajgrover/halo")
+ (synopsis "Python library to display graphical spinners in the terminal")
+ (description
+ "Halo is a Python library to display graphical spinners in the terminal.
+It also supports IPython/Jupyter.")
+ (license license:expat)))
+
(define-public python-huey
(package
(name "python-huey")
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index f8a5e6237d..d756b1c3c5 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -1147,33 +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-halo
- (package
- (name "python-halo")
- (version "0.0.31")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "halo" version))
- (sha256
- (base32 "1mn97h370ggbc9vi6x8r6akd5q8i512y6kid2nvm67g93r9a6rvv"))))
- (build-system pyproject-build-system)
- (arguments
- (list #:tests? #f)) ;no tests in PyPI archive, no tags in Git
- (native-inputs
- (list python-setuptools))
- (propagated-inputs
- (list python-colorama
- python-log-symbols
- python-six
- python-spinners
- python-termcolor))
- (home-page "https://github.com/manrajgrover/halo")
- (synopsis "Python library to display graphical spinners in the terminal")
- (description "Halo is a Python library to display graphical spinners in
-the terminal. It also supports IPython/Jupyter.")
- (license license:expat)))
-
(define-public python-log-symbols
(package
(name "python-log-symbols")