mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-colored.
* gnu/packages/python-xyz.scm (python-colored): New variable.
This commit is contained in:
parent
eb2918aa96
commit
b4382b294e
1 changed files with 22 additions and 0 deletions
|
@ -735,6 +735,28 @@ It uses a plain-text database, a location-independent library, and features
|
||||||
git integration, command-line support, and a curses-based TUI.")
|
git integration, command-line support, and a curses-based TUI.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-colored
|
||||||
|
(package
|
||||||
|
(name "python-colored")
|
||||||
|
(version "1.4.4")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://gitlab.com/dslackw/colored")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"196ins0m7f90xz5dw764dlx060ziqbcydqzzq40b4ir5858baf3r"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments (list #:tests? #false)) ;the tests are not run automatically
|
||||||
|
(home-page "https://gitlab.com/dslackw/colored")
|
||||||
|
(synopsis "Simple library for color and formatting to terminal")
|
||||||
|
(description "This is a very simple Python library for color and
|
||||||
|
formatting in the terminal. It comes with a collection of color codes and
|
||||||
|
names for 256 color terminal setups.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-colorful
|
(define-public python-colorful
|
||||||
(package
|
(package
|
||||||
(name "python-colorful")
|
(name "python-colorful")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue