summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-26 19:08:22 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-29 15:28:37 +0000
commit379667f3239a792afc66d1e13051f28002150650 (patch)
tree60930bf01562da29836f85e777985e71c06f4ef5 /gnu/packages/python-web.scm
parent1a6ab6cbb7dc18a91d95286957755e8719a4b4d9 (diff)
gnu: python-zeep: Relax requests-file requirement.
* gnu/packages/python-web.scm (python-zeep)[arguments] <#:phases>: Add phase 'relax-requirements. Change-Id: Id09558d0ab8d2dc6d4cd1ae815dafb4d78eb89fb Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm4
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 09d8e8744ed..d2fdfb73823 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -12193,6 +12193,10 @@ resources using Web Application Description Language (WADL) files as guides.")
'(modify-phases %standard-phases
(add-after 'unpack 'compatibility
(lambda _
+ ;; Relax requests-file requirement.
+ (substitute* "pyproject.toml"
+ (("\"requests-file.*\",")
+ "\"requests-file\","))
;; httpx removed the "proxies" keyword. It's now either "mounts"
;; or "proxy". See https://github.com/encode/httpx/pull/2879.
(substitute* "src/zeep/transports.py"