summaryrefslogtreecommitdiff
path: root/gnu/packages/check.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/check.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/check.scm')
-rw-r--r--gnu/packages/check.scm31
1 files changed, 0 insertions, 31 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 452a045425d..72fa088ac47 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -3512,37 +3512,6 @@ tests written in a natural language style, backed up by Python code.")
JSON APIs with Behave.")
(license license:expat)))
-(define-public python-rednose
- (package
- (name "python-rednose")
- (version "1.2.3")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "rednose" version))
- (sha256
- (base32
- "11x5nx5b4wdq04s7vj1gcdl07jvvkfb37p0r5lg773gr5rr8mj6h"))))
- (build-system python-build-system)
- (arguments
- `(#:phases (modify-phases %standard-phases
- (add-after 'unpack 'patch-setup.py
- (lambda _
- ;; Six is only required for tests and later versions
- ;; work fine.
- (substitute* "setup.py"
- (("six==1.10.0") "six"))
- #t)))))
- (propagated-inputs
- (list python-colorama python-termstyle))
- (native-inputs
- (list python-six python-nose))
- (home-page "https://github.com/JBKahn/rednose")
- (synopsis "Colored output for Python nosetests")
- (description "This package provides colored output for the
-@command{nosetests} command of the Python Nose unit test framework.")
- (license license:bsd-3)))
-
(define-public python-nose-exclude
(package
(name "python-nose-exclude")