Message ID | 20220314224144.18295-4-goodoldpaul@autistici.org |
---|---|
State | New |
Headers | show |
Series | [bug#53019,1/8] gnu: Add python-codeclimate-test-reporter. | expand |
Context | Check | Description |
---|---|---|
cbaines/comparison | success | View comparision |
cbaines/git branch | success | View Git branch |
cbaines/applying patch | success | View Laminar job |
cbaines/issue | success | View issue |
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index e29f9ce02b..ea2d323dd2 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -1179,6 +1179,17 @@ (define-public python-pytest-cov supports coverage of subprocesses.") (license license:expat))) +(define-public python-pytest-cov-3.0 + (package + (inherit python-pytest-cov) + (version "3.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pytest-cov" version)) + (sha256 + (base32 "0w6lfv8gc1lxmnvsz7mq5z9shxac5zz6s9mwrai108kxc6qzbw77")))))) + (define-public python2-pytest-cov (package-with-python2 python-pytest-cov))