mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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
This commit is contained in:
parent
6ef5cc93b0
commit
7afd2d16ad
2 changed files with 29 additions and 27 deletions
|
@ -137,6 +137,7 @@
|
||||||
;;; Copyright © 2023 Amade Nemes <nemesamade@gmail.com>
|
;;; Copyright © 2023 Amade Nemes <nemesamade@gmail.com>
|
||||||
;;; Copyright © 2023 Bruno Victal <mirai@makinata.eu>
|
;;; Copyright © 2023 Bruno Victal <mirai@makinata.eu>
|
||||||
;;; Copyright © 2023 Lu Hui <luhux76@gmail.com>
|
;;; Copyright © 2023 Lu Hui <luhux76@gmail.com>
|
||||||
|
;;; Copyright © 2023 Jean-Pierre De Jesus DIAZ <jean@foundationdevices.com>
|
||||||
;;; Copyright © 2023 Kaelyn Takata <kaelyn.alexi@protonmail.com>
|
;;; Copyright © 2023 Kaelyn Takata <kaelyn.alexi@protonmail.com>
|
||||||
;;; Copyright © 2023 dan <i@dan.games>
|
;;; Copyright © 2023 dan <i@dan.games>
|
||||||
;;; Copyright © 2023 Dominik Delgado Steuter <d@delgado.nrw>
|
;;; Copyright © 2023 Dominik Delgado Steuter <d@delgado.nrw>
|
||||||
|
@ -927,6 +928,34 @@ part of @url{https://github.com/hgrecco/pint, Pint}, the Python units
|
||||||
package. ")
|
package. ")
|
||||||
(license license:bsd-3)))
|
(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
|
(define-public python-huey
|
||||||
(package
|
(package
|
||||||
(name "python-huey")
|
(name "python-huey")
|
||||||
|
|
|
@ -1147,33 +1147,6 @@ features string-like objects which carry formatting information, per-line
|
||||||
fullscreen terminal rendering, and keyboard input event reporting.")
|
fullscreen terminal rendering, and keyboard input event reporting.")
|
||||||
(license license:expat)))
|
(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
|
(define-public python-log-symbols
|
||||||
(package
|
(package
|
||||||
(name "python-log-symbols")
|
(name "python-log-symbols")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue