gnu: python-sphinx: Update to 1.5.1 and enable tests.
* gnu/packages/python.scm (python-sphinx): Update to 1.5.1. [arguments]: New field. [native-inputs]: Add graphviz, python-html5lib, python-mock, python-nose, python-requests. (python2-sphinx)[native-inputs]: Add python2-enum34.
This commit is contained in:
parent
c9a1812527
commit
c227458ac8
|
@ -67,6 +67,7 @@
|
||||||
#:use-module (gnu packages ghostscript)
|
#:use-module (gnu packages ghostscript)
|
||||||
#:use-module (gnu packages gl)
|
#:use-module (gnu packages gl)
|
||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
|
#:use-module (gnu packages graphviz)
|
||||||
#:use-module (gnu packages gstreamer)
|
#:use-module (gnu packages gstreamer)
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages icu4c)
|
#:use-module (gnu packages icu4c)
|
||||||
|
@ -2945,18 +2946,23 @@ reStructuredText.")
|
||||||
(define-public python-sphinx
|
(define-public python-sphinx
|
||||||
(package
|
(package
|
||||||
(name "python-sphinx")
|
(name "python-sphinx")
|
||||||
(version "1.4.8")
|
(version "1.5.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "Sphinx" version))
|
(uri (pypi-uri "Sphinx" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0zvh8wwhm6gy21rr0cg42znsy4zzv2mnsxxk9gmn5y1ycn7rgbs1"))))
|
"1i8p9idnli4gr0y4x67yakbdk5w6a0xjzhrg6bg51y9d1fi7fslf"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; FIXME: Missing dependencies.
|
`(#:phases
|
||||||
'(#:tests? #f))
|
(modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda _
|
||||||
|
;; Requires Internet access.
|
||||||
|
(delete-file "tests/test_build_linkcheck.py")
|
||||||
|
(zero? (system* "make" "test")))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-imagesize" ,python-imagesize)
|
`(("python-imagesize" ,python-imagesize)
|
||||||
("python-sphinx-alabaster-theme"
|
("python-sphinx-alabaster-theme"
|
||||||
|
@ -2967,6 +2973,12 @@ reStructuredText.")
|
||||||
("python-jinja2" ,python-jinja2)
|
("python-jinja2" ,python-jinja2)
|
||||||
("python-pygments" ,python-pygments)
|
("python-pygments" ,python-pygments)
|
||||||
("python-six" ,python-six)))
|
("python-six" ,python-six)))
|
||||||
|
(native-inputs
|
||||||
|
`(("graphviz" ,graphviz)
|
||||||
|
("python-html5lib" ,python-html5lib)
|
||||||
|
("python-mock" ,python-mock)
|
||||||
|
("python-nose" ,python-nose)
|
||||||
|
("python-requests" ,python-requests)))
|
||||||
(home-page "http://sphinx-doc.org/")
|
(home-page "http://sphinx-doc.org/")
|
||||||
(synopsis "Python documentation generator")
|
(synopsis "Python documentation generator")
|
||||||
(description "Sphinx is a tool that makes it easy to create documentation
|
(description "Sphinx is a tool that makes it easy to create documentation
|
||||||
|
@ -2980,6 +2992,7 @@ sources.")
|
||||||
(package
|
(package
|
||||||
(inherit base)
|
(inherit base)
|
||||||
(native-inputs `(("python2-mock" ,python2-mock)
|
(native-inputs `(("python2-mock" ,python2-mock)
|
||||||
|
("python2-enum34" ,python2-enum34)
|
||||||
,@(package-native-inputs base)))
|
,@(package-native-inputs base)))
|
||||||
(propagated-inputs `(("python2-pytz" ,python2-pytz)
|
(propagated-inputs `(("python2-pytz" ,python2-pytz)
|
||||||
,@(package-propagated-inputs base))))))
|
,@(package-propagated-inputs base))))))
|
||||||
|
|
Loading…
Reference in New Issue