~ruther/guix-local

973816c38f4621f87212dfa97316892d521335af — Nicolas Graves 3 months ago f8bbb9a
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 <sharlatanus@gmail.com>
1 files changed, 9 insertions(+), 5 deletions(-)

M gnu/packages/sphinx.scm
M gnu/packages/sphinx.scm => gnu/packages/sphinx.scm +9 -5
@@ 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