[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 12/16] gnu: Add python-cov-core.
From: |
Efraim Flashner |
Subject: |
[PATCH 12/16] gnu: Add python-cov-core. |
Date: |
Sun, 11 Sep 2016 21:58:53 +0300 |
* gnu/packages/python.scm (python-cov-core): New variable.
---
gnu/packages/python.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 4d151a3..81c706d 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -2172,6 +2172,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")
--
2.10.0
- [PATCH 03/16] gnu: Add python-promise., (continued)
- [PATCH 03/16] gnu: Add python-promise., Efraim Flashner, 2016/09/11
- [PATCH 04/16] gnu: Add python-pytest-mock., Efraim Flashner, 2016/09/11
- [PATCH 05/16] gnu: Add python-graphql-core., Efraim Flashner, 2016/09/11
- [PATCH 06/16] gnu: Add python-graphql-relay., Efraim Flashner, 2016/09/11
- [PATCH 07/16] gnu: Add python-sqlalchemy-utils., Efraim Flashner, 2016/09/11
- [PATCH 12/16] gnu: Add python-cov-core.,
Efraim Flashner <=
- [PATCH 08/16] gnu: Add python-pytest-django., Efraim Flashner, 2016/09/11
- [PATCH 13/16] gnu: Add python-nose2., Efraim Flashner, 2016/09/11
- [PATCH 09/16] gnu: Add python-django-filter., Efraim Flashner, 2016/09/11
- [PATCH 11/16] gnu: Add python-consul., Efraim Flashner, 2016/09/11
- [PATCH 10/16] gnu: Add python-graphene., Efraim Flashner, 2016/09/11
- [PATCH 14/16] gnu: Add python-bcrypt., Efraim Flashner, 2016/09/11
- [PATCH 15/16] gnu: Add python-nautilus., Efraim Flashner, 2016/09/11
- [PATCH 16/16] gnu: Add onionshare., Efraim Flashner, 2016/09/11
- Re: [PATCH 00/16] Add onionshare, Efraim Flashner, 2016/09/11