From 878ed7436749a4ea96043ea1b546d9173d4cb4c0 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Fri, 21 Nov 2025 20:05:25 +0100 Subject: [PATCH] gnu: python-sphinxext-rediraffe: Disable tests. * gnu/packages/sphinx.scm (python-sphinxext-rediraffe) [arguments]<#:tests?>: Disable them. [native-inputs]: Remove python-wheel. Change-Id: Ic2c60f9994466708fe492678dbb42f9bc54b78db Signed-off-by: Sharlatan Hellseher --- gnu/packages/sphinx.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 52e898ea028d09fa164bedfc3defef8004cd4911..92c38d4fd2435815740a5ab37d49b162c319d3ec 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -1181,6 +1181,7 @@ translate and to apply translation to Sphinx generated document.") (build-system pyproject-build-system) (arguments (list + #:tests? #f ; No tests. #:phases #~(modify-phases %standard-phases (add-after 'unpack 'patch-version @@ -1189,7 +1190,7 @@ translate and to apply translation to Sphinx generated document.") (("version = \"main\"") (string-append "version = \"" #$version "\"")))))))) (propagated-inputs (list python-sphinx)) - (native-inputs (list python-setuptools python-wheel)) + (native-inputs (list python-setuptools)) (home-page "https://github.com/wpilibsuite/sphinxext-rediraffe") (synopsis "Sphinx Extension that redirects non-existent pages to working pages")