guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 973816c38f4621f87212dfa97316892d521335af
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Nov 23 13:37:09 2025 +0100

    gnu: python-sphinx-argparse: Update to 0.5.2.
    
    * gnu/packages/sphinx.scm (python-sphinx-argparse): Update to 0.5.2.
    [build-system]: Switch to pyproject-build-system.
    [propagated-inputs]: Add python-docutils.
    [native-inputs]: Remove python-commomark, python-sphinx-rtd-theme.
    Add python-flit-core, python-lxml, python-setuptools,
    python-typing-extensions.
    
    Change-Id: Ife8585e1b19b332f764a74987bff6b1f2b83ca6f
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/sphinx.scm | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index cf088f0bf4..72dd6f7b0d 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -957,18 +957,22 @@ Sphinx documentation system.  It's the default theme of 
Sphinx.")
 (define-public python-sphinx-argparse
   (package
     (name "python-sphinx-argparse")
-    (version "0.3.1")
+    (version "0.5.2")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "sphinx-argparse" version))
        (sha256
-        (base32 "07nw68nrbpzsswb5bz8gdb5allgj6jnz8m81afhr9v6c8fyiq5c2"))))
-    (build-system python-build-system)
+        (base32 "0cph8iv4whf6r6kc3fzl3sbkbm7qm4lbm604v9pzpdllm27jydg5"))))
+    (build-system pyproject-build-system)
     (propagated-inputs
-     (list python-sphinx))
+     (list python-docutils python-sphinx))
     (native-inputs
-     (list python-commonmark python-pytest python-sphinx-rtd-theme))
+     (list python-flit-core
+           python-lxml
+           python-pytest
+           python-setuptools
+           python-typing-extensions))
     (home-page "https://github.com/ribozz/sphinx-argparse";)
     (synopsis "Sphinx extension for documenting argparse commands and options")
     (description

Reply via email to