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

commit 3f27343b1a0977f9d4383e25ff825469f5a9f562
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Tue Aug 5 15:48:41 2025 +0100

    gnu: python-sphinxcontrib-applehelp: Update to 2.0.0.
    
    * gnu/packages/sphinx.scm (python-sphinxcontrib-applehelp): Update to 2.0.0.
      [build-system]: Use pyproject.
      [native-inputs]: Add python-flit-core.
    
    Change-Id: I657c0bacf26eccbca75035fad57f68c5876d661c
---
 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 c89f3d47b5..118a189965 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -298,16 +298,18 @@ sources.")
 (define-public python-sphinxcontrib-applehelp
   (package
     (name "python-sphinxcontrib-applehelp")
-    (version "1.0.2")
-    (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "sphinxcontrib-applehelp" version))
-              (sha256
-               (base32
-                "0n5wrn4l7x6gxvi1g7c6y72hkxgc223axz1jykipaxhfr1g76wm0"))))
-    (build-system python-build-system)
+    (version "2.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "sphinxcontrib_applehelp" version))
+       (sha256
+        (base32 "1l863hp1pikrn04082f6jh49fha910zqfd27za79bkim2wryya9g"))))
+    (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-applehelp";)
     (synopsis "Sphinx extension for creating Apple help books")
     (description

Reply via email to