From 136700181ba61cf9ab44ce6e64e09a30415bc870 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 25 Oct 2023 16:06:50 +0200 Subject: gnu: Add python-assertpy. * gnu/packages/python-check.scm (python-assertpy): New variable. Change-Id: Ia17d256361eebe977a7d663b473e6c907ffe4ec2 --- gnu/packages/python-check.scm | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'gnu/packages') 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 +;;; Copyright © 2019, 2021, 2022, 2023 Ricardo Wurmus ;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice ;;; Copyright © 2019, 2020, 2021 Efraim Flashner ;;; Copyright © 2019, 2020, 2021, 2022, 2023 Maxim Cournoyer @@ -59,6 +59,24 @@ (define-module (gnu packages python-check) #: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") -- cgit v1.2.3