gnu: python2-sphinx: Build with python-docutils@0.14.

* gnu/packages/python-xyz.scm (python2-docutils-0.14): New public variable.
* gnu/packages/sphinx.scm (python2-sphinx)[propagated-inputs]: Change from
PYTHON2-DOCUTILS to PYTHON2-DOCUTILS-0.14.
This commit is contained in:
Marius Bakke 2020-03-11 17:46:04 +01:00
parent 2d421c4f19
commit 4510aeb91c
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA
2 changed files with 13 additions and 1 deletions

View file

@ -2703,6 +2703,18 @@ (define-public python-docutils
(define-public python2-docutils
(package-with-python2 python-docutils))
;; python2-sphinx fails its test suite with newer versions.
(define-public python2-docutils-0.14
(package
(inherit python2-docutils)
(version "0.14")
(source (origin
(method url-fetch)
(uri (pypi-uri "docutils" version))
(sha256
(base32
"0x22fs3pdmr42kvz6c654756wja305qv6cx1zbhwlagvxgr4xrji"))))))
(define-public python-pygments
(package
(name "python-pygments")

View file

@ -137,7 +137,7 @@ (define-public python2-sphinx
,python2-sphinx-alabaster-theme)
("python2-babel" ,python2-babel-2.6)
("python2-snowballstemmer" ,python2-snowballstemmer)
("python2-docutils" ,python2-docutils)
("python2-docutils" ,python2-docutils-0.14)
("python2-jinja2" ,python2-jinja2)
("python2-packaging" ,python2-packaging)
("python2-pygments" ,python2-pygments)