rekado pushed a commit to branch master
in repository guix.

commit 51d8ae3af6aa727657dd1ff48237c1354289aac6
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Jan 17 21:36:11 2025 +0000

    gnu: python-sphinxcontrib-apidoc: Update to 0.5.0.
    
    * gnu/packages/sphinx.scm (python-sphinxcontrib-apidoc): Update to 0.5.0.
    [build-system]: Swap to pyproejct-build-system.
    [arguments] <tests?>: Enable them.
    [propagated-inputs]: Add python-pbr and python-sphinx.
    [native-inputs]: Remove python-pbr, python-sphinx, and
    python-testrepository; add python-setuptools and python-wheel.
    
    Change-Id: I6daa8a2bf1deaf71c57bcc712e22ef85724ad0b5
---
 gnu/packages/sphinx.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index f044c5ac54..f656f4d5c0 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -284,22 +284,22 @@ sources.")
 (define-public python-sphinxcontrib-apidoc
   (package
     (name "python-sphinxcontrib-apidoc")
-    (version "0.3.0")
+    (version "0.5.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "sphinxcontrib-apidoc" version))
        (sha256
         (base32
-         "1f9zfzggs8a596jw51fpfmr149n05mrlyy859iydazbvry9gb6vj"))))
-    (build-system python-build-system)
-    (arguments
-     `(#:tests? #f))                    ;requires python-pytest<4.0
+         "0mfdfxqxksixxpcigrjykaq6p2j5ic4yx5gv2lvq4pra469cvvv5"))))
+    (build-system pyproject-build-system)
     (native-inputs
+     (list python-pytest
+           python-setuptools
+           python-wheel))
+    (propagated-inputs
      (list python-pbr
-           python-pytest
-           python-sphinx
-           python-testrepository))
+           python-sphinx))
     (home-page "https://github.com/sphinx-contrib/apidoc";)
     (synopsis "Sphinx extension for running @code{sphinx-apidoc}")
     (description "This package provides Sphinx extension for running

Reply via email to