From f8bbb9a3f65335292222592321382f5d7b90fde5 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sun, 23 Nov 2025 13:34:10 +0100 Subject: [PATCH] gnu: python-sphinx-me: Switch to pyproject. * gnu/packages/sphinx.scm (python-sphinx-me): [build-system]: Switch to pyproject-build-system. [arguments]<#:tests?>: Disable them. [native-inputs]: Add python-setuptools. Change-Id: I46dded77ef185f717cbeb0d6752def0ca7f29997 Signed-off-by: Sharlatan Hellseher --- gnu/packages/sphinx.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index cee030c93923848dd889a518db57cc04e6419be2..cf088f0bf4589a0fa4b13b2c9c0cc22ab6146ce9 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -868,9 +868,10 @@ from any set of Python scripts and puts it into an examples gallery.") (method url-fetch) (uri (pypi-uri "sphinx-me" version)) (sha256 - (base32 - "06jzgp213zihnvpcy2y5jy3ykid3apc2ncp2pg6a2g05lhiziglq")))) - (build-system python-build-system) + (base32 "06jzgp213zihnvpcy2y5jy3ykid3apc2ncp2pg6a2g05lhiziglq")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ; No tests. + (native-inputs (list python-setuptools)) (home-page "https://github.com/stephenmcd/sphinx-me") (synopsis "Create a Sphinx documentation shell") (description