about summary refs log tree commit diff
path: root/gn/packages/check.scm
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2025-10-06 04:11:21 -0500
committerFrederick Muriuki Muriithi2025-10-06 11:30:11 -0500
commitd9a10dd3e6f370f068e9c7a96318546d550a3731 (patch)
tree259418818a07bcca6390f1d8ff04d6c015c7f801 /gn/packages/check.scm
parent757f7c73e8b5be7251067445fa9e447784ea6d12 (diff)
downloadguix-bioinformatics-d9a10dd3e6f370f068e9c7a96318546d550a3731.tar.gz
python-nosexcover: Copy deleted package from mainline guix
Copy over the package deleted in mainline guix over to
guix-bioinformatics.
Diffstat (limited to 'gn/packages/check.scm')
-rw-r--r--gn/packages/check.scm29
1 files changed, 29 insertions, 0 deletions
diff --git a/gn/packages/check.scm b/gn/packages/check.scm
new file mode 100644
index 0000000..69c9f1f
--- /dev/null
+++ b/gn/packages/check.scm
@@ -0,0 +1,29 @@
+(define-module (gn packages check)
+  #:use-module (guix packages)
+  #:use-module (guix download)
+  #:use-module (guix build-system python)
+  #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (gnu packages check))
+
+(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)))