mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: Add python-clrprint.
* gnu/packages/python-xyz.scm (python-clrprint): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
dbf0987971
commit
fce8de7800
1 changed files with 20 additions and 0 deletions
|
@ -30093,6 +30093,26 @@ (define-public python-gatt
|
||||||
Currently, Linux is the only platform supported by this library.")
|
Currently, Linux is the only platform supported by this library.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-clrprint
|
||||||
|
(package
|
||||||
|
(name "python-clrprint")
|
||||||
|
(version "2.0.1")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "clrprint" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0xfn8d1by2w7pjiji887qljk1avn4fylbnz1mj28gysm5g0zvy43"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(arguments '(#:tests? #f)) ;there are no tests
|
||||||
|
(propagated-inputs (list python-colorama python-termcolor))
|
||||||
|
(home-page "https://github.com/AbhijithAJ/clrprint")
|
||||||
|
(synopsis "Print colorful output in the terminal")
|
||||||
|
(description "@code{clrprint} is developed to print colorful output in the
|
||||||
|
terminal. It has red, blue, green, yellow, purple and black/white (default)
|
||||||
|
colors.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-musical-scales
|
(define-public python-musical-scales
|
||||||
(package
|
(package
|
||||||
(name "python-musical-scales")
|
(name "python-musical-scales")
|
||||||
|
|
Loading…
Reference in a new issue