From 67a113614c9460a026cc72099591e99e4776f18d Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 19 Dec 2025 14:11:44 +0000 Subject: [PATCH] gnu: ansible: Switch to pyproject, disable tests. * gnu/packages/admin.scm (ansible): [build-system]: Switch to pyproject-build-system. [arguments] : Disable for now. [native-inputs]: Add python-setuptools. Change-Id: I7a80f916889db0015a3e8dc9802d505a197bae32 --- gnu/packages/admin.scm | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 2bb39a6702cec83bf75433cdf21a56d48dc37d48..93c3f166a0a649d7d938b89694ed50c405b6617e 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -3353,7 +3353,17 @@ provides the following commands: (uri (pypi-uri "ansible" version)) (sha256 (base32 "0apj783acx4jzkf3bnibn4y5jc6jd8ly7l0rdqq8f1jpgxal933x")))) - (build-system python-build-system) + (build-system pyproject-build-system) + (arguments + (list + ;; XXX: All tests errored with: + ;; from ...common.utils import ( + ;; E ImportError: attempted relative import with no known parent package + ;; + ;; tests: 17 skipped, 1 warning, 1132 errors + #:tests? #f)) + (native-inputs + (list python-setuptools)) (propagated-inputs (list ansible-core)) ;; The Ansible collections are found by ansible-core via the Python search ;; path; the following search path ensures that they are found even when