[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#53019] [PATCH 2/6] gnu: Add python-coverage-5.5
From: |
Giacomo Leidi |
Subject: |
[bug#53019] [PATCH 2/6] gnu: Add python-coverage-5.5 |
Date: |
Fri, 1 Jul 2022 23:32:58 +0200 |
* gnu/packages/check.scm (python-coverage-5.5): New variable.
---
gnu/packages/check.scm | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 6ad2b1acd8..f2871690a5 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -38,6 +38,7 @@
;;; Copyright © 2020, 2021, 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2021 Hugo Lecomte <hugo.lecomte@inria.fr>
;;; Copyright © 2022 Maxime Devos <maximedevos@telenet.be>
+;;; Copyright © 2022 Giacomo Leidi <goodoldpaul@autistici.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1745,6 +1746,18 @@ (define-public python-coverage
executed.")
(license license:bsd-3)))
+(define-public python-coverage-5.5
+ (package
+ (inherit python-coverage)
+ (version "5.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "coverage" version))
+ (sha256
+ (base32
+ "0b112ly7vvplvm9l411aqknxhr7fzfyp28xhflhkcx78l3lqzrzb"))))))
+
(define-public python-pytest-asyncio
(package
(name "python-pytest-asyncio")
--
2.36.1
- [bug#53019] [PATCH 1/6] gnu: Add python-codeclimate-test-reporter., Giacomo Leidi, 2022/07/01
- [bug#53019] [PATCH 3/6] gnu: python-codecov: Update to 2.1.12., Giacomo Leidi, 2022/07/01
- [bug#53019] [PATCH 5/6] gnu: Add python-ddlparse., Giacomo Leidi, 2022/07/01
- [bug#53019] [PATCH 6/6] gnu: Add python-aerich., Giacomo Leidi, 2022/07/01
- [bug#53019] [PATCH 1/6] gnu: Add python-codeclimate-test-reporter., Maxime Devos, 2022/07/30