~ruther/guix-local

c1ea57265a78b1662a9c1106019fc9b4871f9bd7 — Nicolas Graves 6 months ago 2060044
gnu: python-sphinxcontrib-autoprogram: Update to 0.1.9.

* gnu/packages/sphinx.scm (python-sphinxcontrib-autoprogram): Update to 0.1.9.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[arguments]<#:tests?>: Disable them.
[native-inputs]: Add python-setuptools.

Change-Id: I84abe2d46dc0a080a678d71e69aa749570152dd4
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 11 insertions(+), 8 deletions(-)

M gnu/packages/sphinx.scm
M gnu/packages/sphinx.scm => gnu/packages/sphinx.scm +11 -8
@@ 1440,17 1440,20 @@ widgets, and supports thebelab for live code execution with minimal effort.")
(define-public python-sphinxcontrib-autoprogram
  (package
    (name "python-sphinxcontrib-autoprogram")
    (version "0.1.8")
    (version "0.1.9")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "sphinxcontrib-autoprogram" version))
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/sphinx-contrib/autoprogram")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32
         "02pi450qml429disph075jyqwjrawrhbsjfkqvjf10yjp6fp4sas"))))
    (build-system python-build-system)
    (propagated-inputs
     (list python-six python-sphinx))
        (base32 "1nyc5qk01z7kp48iablz059kxvkpm6m5q9wrnj9v3zsphpx3lxgj"))))
    (build-system pyproject-build-system)
    (arguments (list #:tests? #f))      ; No tests despite tox.ini.
    (native-inputs (list python-setuptools))
    (propagated-inputs (list python-six python-sphinx))
    (home-page "https://github.com/sphinx-contrib/autoprogram")
    (synopsis "Documenting CLI programs")
    (description