summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-05 16:12:32 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:13 +0100
commit19fb0594894a61073f0d02b10fd67a892c3ca096 (patch)
tree952196aa778da6b0918de10349c6f127f912b6a7
parent1e503ab9c2e561fca20c177adceb42c89c067f64 (diff)
gnu: python-codecov: Update to 2.1.13.
* gnu/packages/check.scm (python-codecov): Update to 2.1.13. [build-system]: Switch to pyproject-build-system. [arguments] <tests?>: No tests in PyPI archive. [native-inputs]: Remove python-unittest2; add python-setuptools. Change-Id: I2a7fe11fbf7812163e93cb62170f40b5cf85857d
-rw-r--r--gnu/packages/check.scm13
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 6cb2c14c25..39b5e6426f 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2656,19 +2656,22 @@ to make testing async code easier.")
(define-public python-codecov
(package
(name "python-codecov")
- (version "2.0.15")
+ (version "2.1.13")
(source
(origin
(method url-fetch)
(uri (pypi-uri "codecov" version))
(sha256
(base32
- "1217c0vqf7ii65635gvl27a5pfhv0r7zhrpdp9cx640hg73bgn4f"))))
- (build-system python-build-system)
+ "131av6sdzxf3qqqb85fm3mcd771mrrv9n6lmp52szbiwcf2vcqi3"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:tests? #f)) ;no tests in PyPI, tests in git are broken
(native-inputs
- (list python-unittest2))
+ (list python-setuptools))
(propagated-inputs
- (list python-coverage python-requests))
+ (list python-coverage
+ python-requests))
(home-page "https://github.com/codecov/codecov-python")
(synopsis "Upload code coverage reports to @code{codecov.io}")
(description