diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-10 01:24:02 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:04 +0100 |
| commit | d91546e8fe2f21bf04cd5295cd3d3c1ae5487ee0 (patch) | |
| tree | e80acced59a7d9c51016840049552f695d7e45f3 /gnu/packages/python-xyz.scm | |
| parent | d22f37ba13e2f482d775b065c033a8de38dfb0f6 (diff) | |
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e453751997..df18e6b970 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -22070,16 +22070,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 |
