guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 9c5c38c35fb58d08fa29153a45b973c109b3820c
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jul 16 23:32:18 2025 +0100
gnu: python-click-7: Fix build.
* gnu/packages/python-xyz.scm (python-click-7): Fix build.
[arguments] <tests?>: Disable them.
[native-inputs]: Add python-setuptools.
Change-Id: I09887788efb52c7088c3f69503004ff664d3c956
---
gnu/packages/python-xyz.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8e9b8a0657..cf86db6ffb 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -7145,7 +7145,9 @@ with sensible defaults out of the box.")
(uri (pypi-uri "click" version))
(sha256
(base32 "06kbzd6sjfkqan3miwj9wqyddfxc2b6hi7p5s4dvqjb3gif2bdfj"))))
- (arguments `())))
+ (arguments (list #:tests? #f)) ;no tests in PyPI
+ (native-inputs
+ (list python-setuptools))))
(define-public python-clickgen
(package