1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-08 02:05:54 +02:00

gnu: Add python-sphinx@1.5.3.

* gnu/packages/python.scm (python-sphinx-1.5.3): New variable.
This commit is contained in:
Muriithi Frederick Muriuki
2017-03-28 15:32:17 -04:00
committed by Leo Famulari
parent 7f71e2579a
commit 3061b33190
+16
View File
@@ -3102,6 +3102,22 @@ sources.")
(license license:bsd-3)
(properties `((python2-variant . ,(delay python2-sphinx))))))
(define-public python-sphinx-1.5.3
(package
(inherit python-sphinx)
(name "python-sphinx")
(version "1.5.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "Sphinx" version))
(sha256
(base32
"0kw1axswbvaavr8ggyf4qr6hnisnrzlbkkcdada69vk1x9xjassg"))))
(native-inputs
`(("python-pytest" ,python-pytest-3.0.7)
,@(package-native-inputs python-sphinx)))))
(define-public python2-sphinx
(let ((base (package-with-python2 (strip-python2-variant python-sphinx))))
(package