[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#35705] [PATCH 3/9] gnu: Add python-sphinxcontrib-serializinghtml
From: |
Marius Bakke |
Subject: |
[bug#35705] [PATCH 3/9] gnu: Add python-sphinxcontrib-serializinghtml |
Date: |
Mon, 13 May 2019 00:12:15 +0200 |
* gnu/packages/sphinx.scm (python-sphinxcontrib-serializinghtml): 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 82a0df2499..1810716e6b 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -137,6 +137,26 @@ commands into documents, helping you to keep your command
examples up to date.")
(home-page "https://github.com/lunaryorn/sphinxcontrib-programoutput")
(license license:bsd-2)))
+(define-public python-sphinxcontrib-serializinghtml
+ (package
+ (name "python-sphinxcontrib-serializinghtml")
+ (version "1.1.3")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "sphinxcontrib-serializinghtml" version))
+ (sha256
+ (base32
+ "09sj3nwahwr4iymg86gczbh151cfczqhf2kclbblzh2jh0zv7vy0"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f)) ;XXX: circular dependency on Sphinx
+ (home-page "https://github.com/sphinx-doc/sphinxcontrib-serializinghtml")
+ (synopsis "Sphinx extension to serialize HTML files")
+ (description
+ "@code{sphinxcontrib-serializinghtml} is a Sphinx extension which outputs
+\"serialized\" HTML files.")
+ (license license:bsd-2)))
+
(define-public python-sphinxcontrib-svg2pdfconverter
(package
(name "python-sphinxcontrib-svg2pdfconverter")
--
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 <=
- [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, 2019/05/12
- [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