[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#35705] [PATCH 7/9] gnu: Add python-sphinxcontrib-htmlhelp.
From: |
Marius Bakke |
Subject: |
[bug#35705] [PATCH 7/9] gnu: Add python-sphinxcontrib-htmlhelp. |
Date: |
Mon, 13 May 2019 00:12:19 +0200 |
* gnu/packages/sphinx.scm (python-sphinxcontrib-htmlhelp): New public variable.
---
gnu/packages/sphinx.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index b782504d46..4bf737b8f2 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -135,6 +135,26 @@ Apple help books.")
@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")
--
2.21.0
- [bug#35705] [PATCH 0/9] Sphinx 2.0, Marius Bakke, 2019/05/12
- [bug#35705] [PATCH 1/9] gnu: Move Sphinx and friends to (gnu packages sphinx)., Marius Bakke, 2019/05/12
- [bug#35705] [PATCH 3/9] gnu: Add python-sphinxcontrib-serializinghtml, Marius Bakke, 2019/05/12
- [bug#35705] [PATCH 2/9] gnu: Remove python2-sphinx., Marius Bakke, 2019/05/12
- [bug#35705] [PATCH 4/9] gnu: Add python-sphinxcontrib-applehelp., Marius Bakke, 2019/05/12
- [bug#35705] [PATCH 7/9] gnu: Add python-sphinxcontrib-htmlhelp.,
Marius Bakke <=
- [bug#35705] [PATCH 9/9] gnu: python-sphinx: Update to 2.0.1., Marius Bakke, 2019/05/12
- [bug#35705] [PATCH 6/9] gnu: Add python-sphinxcontrib-jsmath., Marius Bakke, 2019/05/12
- [bug#35705] [PATCH 5/9] gnu: Add python-sphinxcontrib-devhelp., Marius Bakke, 2019/05/12
- [bug#35705] [PATCH 8/9] gnu: Add python-sphinxcontrib-qthelp., Marius Bakke, 2019/05/12
- [bug#35705] [PATCH 0/9] Sphinx 2.0, Ricardo Wurmus, 2019/05/14
- bug#35705: [PATCH 0/9] Sphinx 2.0, Marius Bakke, 2019/05/25