summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-12-19 14:11:44 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-19 14:13:22 +0000
commit67a113614c9460a026cc72099591e99e4776f18d (patch)
tree74d33390cc7684c7ec5482b649a0a2fae271ba41 /gnu
parented5ddd6b4850da9ce046ffc01faa8bd535349d6d (diff)
gnu: ansible: Switch to pyproject, disable tests.
* gnu/packages/admin.scm (ansible): [build-system]: Switch to pyproject-build-system. [arguments] <tests?>: Disable for now. [native-inputs]: Add python-setuptools. Change-Id: I7a80f916889db0015a3e8dc9802d505a197bae32
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/admin.scm12
1 files changed, 11 insertions, 1 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 2bb39a6702c..93c3f166a0a 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -3353,7 +3353,17 @@ provides the following commands:
3353 (uri (pypi-uri "ansible" version)) 3353 (uri (pypi-uri "ansible" version))
3354 (sha256 3354 (sha256
3355 (base32 "0apj783acx4jzkf3bnibn4y5jc6jd8ly7l0rdqq8f1jpgxal933x")))) 3355 (base32 "0apj783acx4jzkf3bnibn4y5jc6jd8ly7l0rdqq8f1jpgxal933x"))))
3356 (build-system python-build-system) 3356 (build-system pyproject-build-system)
3357 (arguments
3358 (list
3359 ;; XXX: All tests errored with:
3360 ;; from ...common.utils import (
3361 ;; E ImportError: attempted relative import with no known parent package
3362 ;;
3363 ;; tests: 17 skipped, 1 warning, 1132 errors
3364 #:tests? #f))
3365 (native-inputs
3366 (list python-setuptools))
3357 (propagated-inputs (list ansible-core)) 3367 (propagated-inputs (list ansible-core))
3358 ;; The Ansible collections are found by ansible-core via the Python search 3368 ;; The Ansible collections are found by ansible-core via the Python search
3359 ;; path; the following search path ensures that they are found even when 3369 ;; path; the following search path ensures that they are found even when