guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 532a9605e2852939cdff84005d430c984172245e
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Aug 10 01:24:02 2025 +0100
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
---
gnu/packages/python-xyz.scm | 26 +++++++++++++++++---------
1 file changed, 17 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index cef64479fd..8854129fc2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22150,16 +22150,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))
- (sha256
- (base32
- "0zkp2sn0vz1hhjbv9bf8fifyzi8ib2d7v7sfak8n3qn67rlrdzzq"))))
- (build-system python-build-system)
+ (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 "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