mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-21 01:26:43 +01:00
gnu: Add python-assertpy.
* gnu/packages/python-check.scm (python-assertpy): New variable. Change-Id: Ia17d256361eebe977a7d663b473e6c907ffe4ec2
This commit is contained in:
parent
0618aaba01
commit
136700181b
1 changed files with 19 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2019, 2021, 2022 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2019, 2021, 2022, 2023 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2019, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2019, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2019, 2020, 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2019, 2020, 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
|
@ -59,6 +59,24 @@ (define-module (gnu packages python-check)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix utils))
|
#:use-module (guix utils))
|
||||||
|
|
||||||
|
(define-public python-assertpy
|
||||||
|
(package
|
||||||
|
(name "python-assertpy")
|
||||||
|
(version "1.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "assertpy" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0cs8xya465wvb9dw0kdl7cvkxwrslhbma66y44r1mmsajcll7imc"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(home-page "https://github.com/assertpy/assertpy")
|
||||||
|
(synopsis "Simple assertion library for unit testing")
|
||||||
|
(description
|
||||||
|
"This package provides a simple assertion library for unit testing in
|
||||||
|
Python with a fluent API.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public python-tappy
|
(define-public python-tappy
|
||||||
(package
|
(package
|
||||||
(name "python-tappy")
|
(name "python-tappy")
|
||||||
|
|
Loading…
Reference in a new issue