diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 14:10:26 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 17:06:54 +0100 |
commit | af7192b751a23c2ece076b88f96ba27853ecb0d6 (patch) | |
tree | 55a35f36f9441668abd2ee6a1e8bff3ca269687a | |
parent | 0a29512607d589f2deab870e773b48ee31a6a4d6 (diff) |
gnu: Remove python-nose-exclude.
* gnu/packages/check.scm (python-nose-exclude): Delete variable.
Change-Id: I9dc5bfff16ba1014b9364e0e27c0b51096b2c774
-rw-r--r-- | gnu/packages/check.scm | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 1bee2c05bd..44403fcdc2 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -3304,40 +3304,6 @@ tests written in a natural language style, backed up by Python code.") JSON APIs with Behave.") (license license:expat))) -(define-public python-nose-exclude - (package - (name "python-nose-exclude") - (version "0.5.0") - (source - (origin - (method url-fetch) - (uri (pypi-uri "nose-exclude" version)) - (sha256 - (base32 "0123x1lyv5b2p9civcfg8vilj2ga3q7p2ks1hq25z0gb3ssai3zp")))) - (build-system pyproject-build-system) - (arguments - (list - #:phases - #~(modify-phases %standard-phases - (add-before 'check 'disable-test - (lambda _ - ;; Disable failing test: AssertionError. - (substitute* '("test_dirs/build/test.py" - "test_dirs/test_not_me/test.py") - (("def test_i_should_never_run") - "def off_i_should_never_run"))))))) - (native-inputs - (list python-setuptools - python-wheel)) - (propagated-inputs - (list python-nose)) - (home-page "https://github.com/kgrandis/nose-exclude") - (synopsis "Exclude specific directories from nosetests runs") - (description - "@code{nose-exclude} is a Nose plugin that allows you to easily specify -directories to be excluded from testing.") - (license license:lgpl2.1+))) - (define-public python-nose-timer (package (name "python-nose-timer") |