summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEfraim Flashner <[email protected]>2018-07-24 17:25:17 +0300
committerEfraim Flashner <[email protected]>2018-07-29 20:00:32 +0300
commitc3f9a6ce676d0023484d52ea92813857d4574a8e (patch)
tree7d26027a507f5e55db4609d8a3c29c4559d0ec32
parent19110787aba7d1cb97b1c3ec4e006230bacf43bf (diff)
gnu: Add python-codecov.
* gnu/packages/check.scm (python-codecov): New variable.
-rw-r--r--gnu/packages/check.scm26
1 files changed, 25 insertions, 1 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 42b90bc2b2..17a69bcd1c 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -7,7 +7,7 @@
;;; Copyright © 2015, 2017 Cyril Roelandt <[email protected]>
;;; Copyright © 2015 Federico Beffa <[email protected]>
;;; Copyright © 2015 Andreas Enge <[email protected]>
-;;; Copyright © 2015, 2016 Efraim Flashner <[email protected]>
+;;; Copyright © 2015, 2016, 2018 Efraim Flashner <[email protected]>
;;; Copyright © 2016, 2017 Leo Famulari <[email protected]>
;;; Copyright © 2016 Christopher Allan Webber <[email protected]>
;;; Copyright © 2016, 2017 Danny Milosavljevic <[email protected]>
@@ -1223,6 +1223,30 @@ testing frameworks.")
(define-public python2-cov-core
(package-with-python2 python-cov-core))
+(define-public python-codecov
+ (package
+ (name "python-codecov")
+ (version "2.0.15")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "codecov" version))
+ (sha256
+ (base32
+ "1217c0vqf7ii65635gvl27a5pfhv0r7zhrpdp9cx640hg73bgn4f"))))
+ (build-system python-build-system)
+ (native-inputs
+ `(("python-unittest2" ,python-unittest2)))
+ (propagated-inputs
+ `(("python-coverage" ,python-coverage)
+ ("python-requests" ,python-requests)))
+ (home-page "http://github.com/codecov/codecov-python")
+ (synopsis "Upload code coverage reports to @code{codecov.io}")
+ (description
+ "Codecov collects code coverage reports from code written in Python, Java,
+C/C++, R, and more, and uploads it to the @code{codecov.io} service.")
+ (license license:asl2.0)))
+
(define-public python-testpath
(package
(name "python-testpath")