diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-04-21 23:36:55 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-05-12 12:46:10 -0400 |
commit | c16f282d560675af51e6bd5dd65b36baaf7850e8 (patch) | |
tree | ca2d44be9c8554120c6c43df37b111e58f5932d3 /gnu/packages/sphinx.scm | |
parent | 01360c8b02f259f7b3890fc0b6dcd37f33ae4d38 (diff) | |
download | guix-c16f282d560675af51e6bd5dd65b36baaf7850e8.tar guix-c16f282d560675af51e6bd5dd65b36baaf7850e8.tar.gz |
gnu: python-sphinx-rtd-theme: Update to 1.0.0.
* gnu/packages/sphinx.scm (python-sphinx-rtd-theme): Update to 1.0.0.
Diffstat (limited to 'gnu/packages/sphinx.scm')
-rw-r--r-- | gnu/packages/sphinx.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 42eb34810a..ae0080b308 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -751,18 +751,17 @@ and several other projects.") (define-public python-sphinx-rtd-theme (package (name "python-sphinx-rtd-theme") - (version "0.2.4") + (version "1.0.0") (source (origin (method url-fetch) (uri (pypi-uri "sphinx_rtd_theme" version)) (sha256 (base32 - "05rlhjzdyapr2w74jjs7mrm8hi69qskcr5vya9f9drpsys7lpxrd")))) + "0p3abj91c3l72ajj5jwblscsdf1jflrnn0djx2h5y6f2wjbx9ipf")))) (build-system python-build-system) (arguments '(#:tests? #f)) ; No tests. - (propagated-inputs - (list python-sphinx)) + (propagated-inputs (list python-docutils python-sphinx)) (home-page "https://github.com/snide/sphinx_rtd_theme/") (synopsis "ReadTheDocs.org theme for Sphinx") (description "A theme for Sphinx used by ReadTheDocs.org.") |