guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/77: gnu: Add python-assertpy.


From: guix-commits
Subject: 08/77: gnu: Add python-assertpy.
Date: Wed, 25 Oct 2023 10:59:48 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 136700181ba61cf9ab44ce6e64e09a30415bc870
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Oct 25 16:06:50 2023 +0200

    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(-)

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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]