summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2026-07-18 04:35:05 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-08 23:02:27 +0100
commit72e3f983c93bb14192a698064579677e8793962f (patch)
tree8b1330ff11c93c91f46778444fa6de4283945574 /gnu/packages/python-xyz.scm
parent2e5a80adaabfdc169d021ca33b01f62d8540baf3 (diff)
gnu: python-rich-click: Update to 1.9.8.
* gnu/packages/python-xyz.scm (python-rich-click): Update to 1.9.8. [arguments]<#:test-flags>: Disable all typer related tests. Relates-to: guix/guix!10013 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm28
1 files changed, 18 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7de06ba8eb3..3a9bc8f992d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22222,17 +22222,25 @@ syntax highlighting, markdown and more to the terminal.")
22222(define-public python-rich-click 22222(define-public python-rich-click
22223 (package 22223 (package
22224 (name "python-rich-click") 22224 (name "python-rich-click")
22225 (version "1.9.7") 22225 (version "1.9.8")
22226 (source 22226 (source
22227 (origin 22227 (origin
22228 (method git-fetch) 22228 (method git-fetch)
22229 (uri (git-reference 22229 (uri (git-reference
22230 (url "https://github.com/ewels/rich-click") 22230 (url "https://github.com/ewels/rich-click")
22231 (commit (string-append "v" version)))) 22231 (commit (string-append "v" version))))
22232 (file-name (git-file-name name version)) 22232 (file-name (git-file-name name version))
22233 (sha256 22233 (sha256
22234 (base32 "1bw3lsj49dln8q7407gv85y8lzdn9a3jcjl9acax6q6x9l73cgqx")))) 22234 (base32 "1xgsblpkp4f43y579614n6cp8br2acms8vdj8gpqxa05csap0fqn"))))
22235 (build-system pyproject-build-system) 22235 (build-system pyproject-build-system)
22236 (arguments
22237 (list
22238 #:test-flags
22239 ;; python-typer 0.26 vendored python-click and broke a lot of things.
22240 ;; See <https://github.com/ewels/rich-click/issues/330> and
22241 ;; <https://github.com/ewels/rich-click/commit/989c38cf4ed918a25fa523c8191c66b42315cb10>.
22242 ;; 136 passed, 6 skipped, 6 deselected
22243 #~(list "-k" "not _typer_")))
22236 (native-inputs 22244 (native-inputs
22237 (list python-inline-snapshot 22245 (list python-inline-snapshot
22238 python-pytest 22246 python-pytest