guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 8fc8a266f37b1bde97671313b083ecde39eaeec3
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Tue Aug 5 15:45:38 2025 +0100

    gnu: python-sphinxcontrib-devhelp: Update to 2.0.0.
    
    * gnu/packages/sphinx.scm (python-sphinxcontrib-devhelp): Update to 2.0.0.
      [build-system]: Use pyproject.
      [native-inputs]: Add python-flit-core.
    
    Change-Id: Idf02a5c618aede563d170e7d4f8fec8247073456
---
 gnu/packages/sphinx.scm | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index 2f6bb0e5e2..c89f3d47b5 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -416,16 +416,18 @@ size responsive web components.")
 (define-public python-sphinxcontrib-devhelp
   (package
     (name "python-sphinxcontrib-devhelp")
-    (version "1.0.2")
-    (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "sphinxcontrib-devhelp" version))
-              (sha256
-               (base32
-                "1r1qngsbjqbg4rj93kpj44qqy7n4x5khldkr0c3ffhlnggx1lzzz"))))
-    (build-system python-build-system)
+    (version "2.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "sphinxcontrib_devhelp" version))
+       (sha256
+        (base32 "1bfi9m5hg7p5vgkkqyawvdwyqj22gcvk68fmnlxxgla5sjb5s7s1"))))
+    (build-system pyproject-build-system)
     (arguments
      `(#:tests? #f))                    ;XXX: circular dependency on Sphinx
+    (native-inputs
+     (list python-flit-core))
     (home-page "https://github.com/sphinx-doc/sphinxcontrib-devhelp";)
     (synopsis "Sphinx extension for creating Devhelp documents")
     (description

Reply via email to