gnu: Add python-sphinxcontrib-htmlhelp.

* gnu/packages/sphinx.scm (python-sphinxcontrib-htmlhelp): New public variable.
This commit is contained in:
Marius Bakke 2019-05-12 23:34:15 +02:00
parent 67be8943c3
commit 72f278a0ff
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -148,6 +148,26 @@ (define-public python-sphinxcontrib-devhelp
@url{Devhelp,https://wiki.gnome.org/Apps/Devhelp} documents.")
(license license:bsd-2)))
(define-public python-sphinxcontrib-htmlhelp
(package
(name "python-sphinxcontrib-htmlhelp")
(version "1.0.2")
(source (origin
(method url-fetch)
(uri (pypi-uri "sphinxcontrib-htmlhelp" version))
(sha256
(base32
"08l4x8a2l4xjqdd5rhvmfsqihmlgg4prdayj9b6pigaii6gzjw26"))))
(build-system python-build-system)
(arguments
`(#:tests? #f)) ;XXX: circular dependency on Sphinx
(home-page "https://github.com/sphinx-doc/sphinxcontrib-htmlhelp")
(synopsis "Sphinx exension for rendering HTML help files")
(description
"@code{sphinxcontrib-htmlhelp} is a Sphinx extension which renders
HTML help files.")
(license license:bsd-2)))
(define-public python-sphinxcontrib-jsmath
(package
(name "python-sphinxcontrib-jsmath")