mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 13:28:12 -05:00
gnu: Add python-sphinxcontrib-qthelp.
* gnu/packages/sphinx.scm (python-sphinxcontrib-qthelp): New public variable.
This commit is contained in:
parent
72f278a0ff
commit
6eceb2d445
1 changed files with 20 additions and 0 deletions
|
@ -233,6 +233,26 @@ (define-public python-sphinxcontrib-programoutput
|
|||
(define-public python2-sphinxcontrib-programoutput
|
||||
(package-with-python2 python-sphinxcontrib-programoutput))
|
||||
|
||||
(define-public python-sphinxcontrib-qthelp
|
||||
(package
|
||||
(name "python-sphinxcontrib-qthelp")
|
||||
(version "1.0.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "sphinxcontrib-qthelp" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0vs09m6kf5vhiivpi5s5pks59iq0lqlsbkdycpqlysg53bhmqikr"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f)) ;XXX: circular dependency on Sphinx
|
||||
(home-page "https://github.com/sphinx-doc/sphinxcontrib-qthelp")
|
||||
(synopsis "Sphinx extension to output QtHelp documents")
|
||||
(description
|
||||
"@code{sphinxcontrib-qthelp} is a Sphinx extension which outputs QtHelp
|
||||
documents.")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public python-sphinxcontrib-serializinghtml
|
||||
(package
|
||||
(name "python-sphinxcontrib-serializinghtml")
|
||||
|
|
Loading…
Reference in a new issue