summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-02-05 00:37:07 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:57 +0100
commitfdece4569e7f0db9723e14f86311001ed0719e53 (patch)
tree8d83bc698e5cd0ea3a0cbf4da1f119600152a29c /gnu/packages
parent57379fbc4476dff50030d3455256d8e696b6398a (diff)
gnu: python-woob: Relax requirements.
* gnu/packages/python-web.scm (python-woob)[arguments]<#:phases>: Add phase 'relax-requirements. Change-Id: Ib178d637ef1658702099ecd1c0fca570128970ed Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-web.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index f7c52908629..22ed68c6ba7 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -12316,10 +12316,13 @@ can be handled by the @code{colorsys} module in the Python standard library.")
#~(modify-phases %standard-phases
(add-before 'build 'relax-requirements
(lambda _
- ;; "packaging ~= 23.0",
(substitute* "pyproject.toml"
+ ;; packaging ~= 23.0
(("\"packaging .*\",")
- "")))))))
+ "")
+ ;; rich~=13.0
+ (("\"rich .*\",")
+ "\"rich\",")))))))
(native-inputs
(list nss-certs-for-test
python-pytest