mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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:
parent
2d421c4f19
commit
4510aeb91c
2 changed files with 13 additions and 1 deletions
|
@ -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")
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue