summaryrefslogtreecommitdiff
path: root/gnu/packages/web.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-02-25 08:13:28 +0100
committerAndreas Enge <andreas@enge.fr>2025-04-16 11:46:14 +0200
commit0165b28b86c16cec3bc9d2c55ec0b225faec668d (patch)
tree90c5f9961b60bf4f4a17939c1b727803ca09f083 /gnu/packages/web.scm
parent31eb603647c48128570442cb9a2e42eb468a0123 (diff)
gnu: Remove python-rednose.
This package is broken with the latest python version, and is easy to remove. * gnu/packages/check.scm (python-rednose): Delete variable. * gnu/packages/python-xyz.scm (python-sure) and * gnu/packages/web.scm (python-httpretty): [arguments]: Add 'remove-rednose-dependency in {phases}. [native-inputs]: Remove python-rednose.
Diffstat (limited to 'gnu/packages/web.scm')
-rw-r--r--gnu/packages/web.scm7
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 74203262ef..25792aae0f 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -7217,6 +7217,12 @@ efficient where possible.")
(list
#:phases
'(modify-phases %standard-phases
+ (add-after 'unpack 'remove-rednose-dependency
+ (lambda _
+ (substitute* "setup.py"
+ (("'rednose'") ""))
+ (substitute* '("requirements.txt" "setup.cfg")
+ (("rednose.*") ""))))
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
@@ -7230,7 +7236,6 @@ efficient where possible.")
python-httplib2
python-nose
python-pyparsing
- python-rednose
python-requests
python-sure
python-tornado))