diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-10-25 16:06:50 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-10-25 16:58:40 +0200 |
commit | 136700181ba61cf9ab44ce6e64e09a30415bc870 (patch) | |
tree | c699449fcc0f66fff4f0cc7a7da230619a4718ea | |
parent | 0618aaba01285924181f78e47a796ea6d2f18eb3 (diff) |
gnu: Add python-assertpy.
* gnu/packages/python-check.scm (python-assertpy): New variable.
Change-Id: Ia17d256361eebe977a7d663b473e6c907ffe4ec2
-rw-r--r-- | gnu/packages/python-check.scm | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 0ccae07093..630c4ea97e 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -1,5 +1,5 @@ ;;; 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, 2021 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2019, 2020, 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com> @@ -59,6 +59,24 @@ #:use-module (guix packages) #: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 (package (name "python-tappy") |