gnu: python-babel: Update to 2.7.0.
* gnu/packages/python-xyz.scm (python-babel): Update to 2.7.0. (python2-babel-2.6): New variable. * gnu/packages/sphinx.scm (python2-sphinx)[propagated-inputs]: Change PYTHON2-BABEL to PYTHON2-BABEL-2.6.
This commit is contained in:
parent
4e24e442f2
commit
93253411d6
|
@ -311,14 +311,14 @@ by @code{binstar}, @code{binstar-build} and @code{chalmers}.")
|
||||||
(define-public python-babel
|
(define-public python-babel
|
||||||
(package
|
(package
|
||||||
(name "python-babel")
|
(name "python-babel")
|
||||||
(version "2.6.0")
|
(version "2.7.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "Babel" version))
|
(uri (pypi-uri "Babel" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"08rxmbx2s4irp0w0gmn498vns5xy0fagm0fg33xa772jiks51flc"))))
|
"0a7wawx8vsg7igvz6p3x909fskhg4b2y1910xk4f4c8y22p3aqg8"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-freezegun" ,python-freezegun)
|
`(("python-freezegun" ,python-freezegun)
|
||||||
|
@ -343,6 +343,18 @@ etc. ")
|
||||||
(define-public python2-babel
|
(define-public python2-babel
|
||||||
(package-with-python2 python-babel))
|
(package-with-python2 python-babel))
|
||||||
|
|
||||||
|
;; Sphinx < 2.0 requires this version. Remove once no longer needed.
|
||||||
|
(define-public python2-babel-2.6
|
||||||
|
(package
|
||||||
|
(inherit python2-babel)
|
||||||
|
(version "2.6.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "Babel" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"08rxmbx2s4irp0w0gmn498vns5xy0fagm0fg33xa772jiks51flc"))))))
|
||||||
|
|
||||||
(define-public python2-backport-ssl-match-hostname
|
(define-public python2-backport-ssl-match-hostname
|
||||||
(package
|
(package
|
||||||
(name "python2-backport-ssl-match-hostname")
|
(name "python2-backport-ssl-match-hostname")
|
||||||
|
|
|
@ -132,7 +132,7 @@ sources.")
|
||||||
("python2-imagesize" ,python2-imagesize)
|
("python2-imagesize" ,python2-imagesize)
|
||||||
("python2-sphinx-alabaster-theme"
|
("python2-sphinx-alabaster-theme"
|
||||||
,python2-sphinx-alabaster-theme)
|
,python2-sphinx-alabaster-theme)
|
||||||
("python2-babel" ,python2-babel)
|
("python2-babel" ,python2-babel-2.6)
|
||||||
("python2-snowballstemmer" ,python2-snowballstemmer)
|
("python2-snowballstemmer" ,python2-snowballstemmer)
|
||||||
("python2-docutils" ,python2-docutils)
|
("python2-docutils" ,python2-docutils)
|
||||||
("python2-jinja2" ,python2-jinja2)
|
("python2-jinja2" ,python2-jinja2)
|
||||||
|
|
Loading…
Reference in New Issue