mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-rich-click: Update to 1.8.9.
* gnu/packages/python-xyz.scm (python-rich-click): Update to 1.8.9. [srouce]: Switch to git-fetch providing tests. [build-system]: Use pyproject. [propagated-inputs]: Remove python-importlib-metadata; add python-typing-extensions. [native-inputs]: Add python-pytest and python-setuptools. Change-Id: I7edc0c34170f4c94daf58ad157c9a877df9a225a
This commit is contained in:
parent
74f2ec2ea5
commit
49953e7956
1 changed files with 17 additions and 9 deletions
|
@ -22094,16 +22094,24 @@ customization required.")
|
|||
(define-public python-rich-click
|
||||
(package
|
||||
(name "python-rich-click")
|
||||
(version "1.6.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "rich-click" version))
|
||||
(version "1.8.9")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/ewels/rich-click")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0zkp2sn0vz1hhjbv9bf8fifyzi8ib2d7v7sfak8n3qn67rlrdzzq"))))
|
||||
(build-system python-build-system)
|
||||
(base32 "0kc2wcb5dpgxhdcz8fy6gfhl7vra03xwgwfg7h0qxxibr8yzhmmq"))))
|
||||
(build-system pyproject-build-system)
|
||||
(native-inputs
|
||||
(list python-pytest
|
||||
python-setuptools))
|
||||
(propagated-inputs
|
||||
(list python-click python-importlib-metadata python-rich))
|
||||
(list python-click
|
||||
python-rich
|
||||
python-typing-extensions))
|
||||
(home-page "https://github.com/ewels/rich-click")
|
||||
(synopsis "Format click help output nicely with rich")
|
||||
(description "Click is a \"Python package for creating beautiful command
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue