summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-03-15 17:13:08 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-24 10:14:29 +0100
commitdcf83b452e882f7626190ca5e5d63e056476e0c2 (patch)
treeebc00435c11de0a2afb56e0ba97552c34348af41 /gnu
parent10b6414ff32c08198b7990fee94ecbdbe9fef406 (diff)
gnu: python-rich-click: Update to 1.9.7.
* gnu/packages/python-xyz.scm (python-rich-click): Update to 1.9.7. [phases]{fix-pytest-config}: New phase. [propagated-inputs]: Remove python-typing-extensions. [native-inputs]: Add python-inline-snapshot and python-typer. Change-Id: I8f22ce7e79d6aae367474c1b609ed43d9ab38167
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm21
1 files changed, 15 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a3e0fae0c5e..e48fd5ec239 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -21329,7 +21329,7 @@ syntax highlighting, markdown and more to the terminal.")
21329(define-public python-rich-click 21329(define-public python-rich-click
21330 (package 21330 (package
21331 (name "python-rich-click") 21331 (name "python-rich-click")
21332 (version "1.8.9") 21332 (version "1.9.7")
21333 (source 21333 (source
21334 (origin 21334 (origin
21335 (method git-fetch) 21335 (method git-fetch)
@@ -21338,15 +21338,24 @@ syntax highlighting, markdown and more to the terminal.")
21338 (commit (string-append "v" version)))) 21338 (commit (string-append "v" version))))
21339 (file-name (git-file-name name version)) 21339 (file-name (git-file-name name version))
21340 (sha256 21340 (sha256
21341 (base32 "0kc2wcb5dpgxhdcz8fy6gfhl7vra03xwgwfg7h0qxxibr8yzhmmq")))) 21341 (base32 "1bw3lsj49dln8q7407gv85y8lzdn9a3jcjl9acax6q6x9l73cgqx"))))
21342 (build-system pyproject-build-system) 21342 (build-system pyproject-build-system)
21343 (arguments
21344 (list
21345 #:phases
21346 #~(modify-phases %standard-phases
21347 (add-after 'unpack 'fix-pytest-config
21348 (lambda _
21349 (substitute* "pyproject.toml"
21350 ((" --cov --cov-report term") "")))))))
21343 (native-inputs 21351 (native-inputs
21344 (list python-pytest 21352 (list python-inline-snapshot
21345 python-setuptools)) 21353 python-pytest
21354 python-setuptools
21355 python-typer))
21346 (propagated-inputs 21356 (propagated-inputs
21347 (list python-click 21357 (list python-click
21348 python-rich 21358 python-rich))
21349 python-typing-extensions))
21350 (home-page "https://github.com/ewels/rich-click") 21359 (home-page "https://github.com/ewels/rich-click")
21351 (synopsis "Format click help output nicely with rich") 21360 (synopsis "Format click help output nicely with rich")
21352 (description "Click is a \"Python package for creating beautiful command 21361 (description "Click is a \"Python package for creating beautiful command