From 2d977d2bdce3be6d597b3ec77f04fa9125da019c Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Wed, 16 Jul 2025 23:32:18 +0100 Subject: [PATCH] gnu: python-click-7: Fix build. * gnu/packages/python-xyz.scm (python-click-7): Fix build. [arguments] : 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 54cfa3948cdc683b2e5c180f9ebb5718fa0ac362..c2db87c28d2b2b3c7af2c428a341cd12ffc22cf0 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