summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-18 07:50:58 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-08-08 16:50:06 +0100
commit7a79f15f94b05d56f49aaa1f0c5c84c587afb715 (patch)
treec94649a38462abe6a11eb62a6f8c0b16819fcda8
parent693b8f66926d22f82e06434efdecd1eaf8a6aa94 (diff)
gnu: Remove python-nosexcover.
It was a fork of "nose.plugins.cover" which is not maintained since 2018 and not in use by any packages in Guix. * gnu/packages/check.scm (python-nosexcover): Delete variable. Change-Id: I2e08f1d02df5e34cd0ab85d59cf4ce9fa365f901
-rw-r--r--gnu/packages/check.scm23
1 files changed, 0 insertions, 23 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index a201886512..16ebb82bea 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -3195,29 +3195,6 @@ possible to write plugins to add your own checks.")
"Python-pytest-catchlog is a pytest plugin to catch log messages.")
(license license:expat)))
-(define-public python-nosexcover
- (package
- (name "python-nosexcover")
- (version "1.0.11")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "nosexcover" version))
- (sha256
- (base32
- "10xqr12qv62k2flxwqhh8cr00cjhn7sfjrm6p35gd1x5bmjkr319"))))
- (build-system python-build-system)
- (propagated-inputs
- (list python-coverage python-nose))
- (home-page "https://github.com/cmheisel/nose-xcover")
- (synopsis "Extends nose.plugins.cover to add Cobertura-style XML reports")
- (description "Nose-xcover is a companion to the built-in
-@code{nose.plugins.cover}. This plugin will write out an XML coverage report
-to a file named coverage.xml.
-
-It will honor all the options you pass to the Nose coverage plugin,
-especially -cover-package.")
- (license license:expat)))
-
(define-public python-discover
(package
(name "python-discover")