mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: Add python-sphinxcontrib-apidoc.
* gnu/packages/sphinx.scm (python-sphinxcontrib-apidoc): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
4d078ed710
commit
68e10a2233
1 changed files with 26 additions and 0 deletions
|
@ -156,6 +156,32 @@ (define-public python2-sphinx
|
|||
python2-six
|
||||
python2-sphinxcontrib-websupport)))))
|
||||
|
||||
(define-public python-sphinxcontrib-apidoc
|
||||
(package
|
||||
(name "python-sphinxcontrib-apidoc")
|
||||
(version "0.3.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
|
||||
(native-inputs
|
||||
(list python-pbr
|
||||
python-pre-commit
|
||||
python-pytest
|
||||
python-sphinx
|
||||
python-testrepository))
|
||||
(home-page "https://github.com/sphinx-contrib/apidoc")
|
||||
(synopsis "Sphinx extension for running @code{sphinx-apidoc}")
|
||||
(description "This package provides Sphinx extension for running
|
||||
@code{sphinx-apidoc} on each build.")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public python-sphinxcontrib-applehelp
|
||||
(package
|
||||
(name "python-sphinxcontrib-applehelp")
|
||||
|
|
Loading…
Reference in a new issue