guix-patches
[Top][All Lists]
Advanced

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

[bug#39028] [PATCH 1/7] gnu: Add python-shouldbe


From: Lars-Dominik Braun
Subject: [bug#39028] [PATCH 1/7] gnu: Add python-shouldbe
Date: Mon, 13 Jan 2020 08:46:49 +0100

* gnu/packages/python-xyz.scm (python-shouldbe): New variable
---
 gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 194d8b8b0c..646d50697c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17117,3 +17117,28 @@ scripts to load entry points more quickly.")
 functional combinators.  Parser combinators are just higher-order functions
 that take parsers as their arguments and return them as result values.")
     (license license:expat)))
+
+(define-public python-shouldbe
+  (package
+    (name "python-shouldbe")
+    (version "0.1.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "shouldbe" version))
+        (sha256
+          (base32
+            "16zbvjxf71dl4yfbgcr6idyim3mdrfvix1dv8b95p0s9z07372pj"))))
+    (build-system python-build-system)
+    (propagated-inputs
+      `(("python-forbiddenfruit" ,python-forbiddenfruit)))
+    (native-inputs
+     `(("python-nose" ,python-nose)))
+    (home-page
+      "https://github.com/directxman12/should_be";)
+    (synopsis
+      "Python Assertion Helpers inspired by Shouldly")
+    (description
+      "Python Assertion Helpers inspired by Shouldly")
+    (license license:isc)))
+
-- 
2.20.1






reply via email to

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