diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-03-10 03:16:18 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:34 +0200 |
commit | 7424092d84bcba1f046dbe72fec3221b750fb858 (patch) | |
tree | 61d85cb042c1cb85fb08582fccde32222dee5c08 | |
parent | a951453fb7a20a5ed8d1f562ef360cb0794d78f8 (diff) | |
download | guix-7424092d84bcba1f046dbe72fec3221b750fb858.tar.gz guix-7424092d84bcba1f046dbe72fec3221b750fb858.zip |
gnu: python-sphinx-panels: Update input to python-sphinx-5.
* gnu/packages/sphinx.scm (python-sphinx-panels):
[arguments]{phases}: Add 'loosen-requirements phase.
[propagated-inputs]: Replace python-sphinx-4 by python-sphinx-5.
Change-Id: I3d7cad92a2d013417ebc4fef65ff244f4bc8d48f
Signed-off-by: Steve George <steve@futurile.net>
-rw-r--r-- | gnu/packages/sphinx.scm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index c300b258da..fd25cca500 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -611,7 +611,15 @@ supported with @code{sphinx-issues}.") (sha256 (base32 "1ivqz6yv96a2jp59kylg1gbkrmzq6zwilppz3ij0zrkjn25zb97k")))) (build-system pyproject-build-system) - (propagated-inputs (list python-docutils-0.15 python-sphinx-4)) + (arguments + (list #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'loosen-requirements + (lambda _ + (substitute* "setup.py" + (("sphinx>=2,<5") + "sphinx>=2,<6"))))))) + (propagated-inputs (list python-docutils-0.15 python-sphinx-5)) (native-inputs (list python-pytest python-pytest-regressions |