diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-12-22 18:19:15 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-12-22 21:17:18 +0200 |
commit | 8efa775653f78dad8b254e719677e663be8f3240 (patch) | |
tree | 147e2c153e96b8209a50760095dfdd0a35b06236 | |
parent | 8cc1aa7d1e7f19561e7e9394fc121230f262359d (diff) | |
download | guix-8efa775653f78dad8b254e719677e663be8f3240.tar guix-8efa775653f78dad8b254e719677e663be8f3240.tar.gz |
gnu: python-pydata-sphinx-theme: Fix build.
* gnu/packages/sphinx.scm (python-pydata-sphinx-theme)[native-inputs]:
Replace python-docutils with python-docutils-0.15. Remove duplicate
entries.
-rw-r--r-- | gnu/packages/sphinx.scm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 3ac5b5e22c..2bea80e5c6 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -9,7 +9,7 @@ ;;; Copyright © 2017 Frederick M. Muriithi <fredmanglis@gmail.com> ;;; Copyright © 2017 Christine Lemmer-Webber <cwebber@dustycloud.org> ;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu> -;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2019, 2021 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2019, 2021 Nicolas Goaziou <mail@nicolasgoaziou.fr> ;;; Copyright © 2019 Alexandros Theodotou <alex@zrythm.org> ;;; Copyright © 2019 Brett Gilio <brettg@gnu.org> @@ -919,7 +919,7 @@ automated way to document command-line programs. It scans (list python-beautifulsoup4)) (native-inputs (list python-beautifulsoup4 - python-docutils + python-docutils-0.15 python-jupyter-sphinx python-numpy python-numpydoc @@ -929,9 +929,7 @@ automated way to document command-line programs. It scans python-pytest-regressions python-recommonmark python-sphinx - python-xarray - python-docutils - python-sphinx)) + python-xarray)) (home-page "https://github.com/pydata/pydata-sphinx-theme") (synopsis "Bootstrap-based Sphinx theme") (description |