summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-16 23:32:18 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:19 +0100
commit2d977d2bdce3be6d597b3ec77f04fa9125da019c (patch)
treeb507012485902bc8e260ac585f044b44e06f9a06
parent0e485125516ab141bfc64775fb7a46133938ddd0 (diff)
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
-rw-r--r--gnu/packages/python-xyz.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 54cfa3948c..c2db87c28d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -7137,7 +7137,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