summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
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"