3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add python-cov-core.

* gnu/packages/python.scm (python-cov-core): New variable.
This commit is contained in:
Efraim Flashner 2016-09-11 21:34:42 +03:00
parent 257023978a
commit 12f839fdf6
Signed by untrusted user: efraim
GPG key ID: F4C1D3917EACEE93

View file

@ -2104,6 +2104,34 @@ executed.")
(define-public python2-coverage
(package-with-python2 python-coverage))
(define-public python-cov-core
(package
(name "python-cov-core")
(version "1.15.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "cov-core" version))
(sha256
(base32
"0k3np9ymh06yv1ib96sb6wfsxjkqhmik8qfsn119vnhga9ywc52a"))))
(build-system python-build-system)
(native-inputs
`(("python-coverage" ,python-coverage)))
(home-page "https://github.com/schlamar/cov-core")
(synopsis "plugin core for use by pytest-cov, nose-cov and nose2-cov")
(description
"This is a library package for use by pytest-cov, nose-cov and nose2-cov.
It is useful for developing coverage plugins for these testing frameworks.")
(license license:expat)))
(define-public python2-cov-core
(let ((cov-core (package-with-python2 python-cov-core)))
(package (inherit cov-core)
(native-inputs
`(("python2-setuptools" ,python2-setuptools)
,@(package-native-inputs cov-core))))))
(define-public python-discover
(package
(name "python-discover")