guix_mirror_bot pushed a commit to branch master
in repository guix.

commit f8bbb9a3f65335292222592321382f5d7b90fde5
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Nov 23 13:34:10 2025 +0100

    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 <[email protected]>
---
 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 cee030c939..cf088f0bf4 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

Reply via email to