me
/
guix
Archived
1
0
Fork 0

gnu: Add python-shouldbe.

* gnu/packages/python-xyz.scm (python-shouldbe): New variable.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
master
Lars-Dominik Braun 2020-01-13 08:46:49 +01:00 committed by 宋文武
parent 84efaa3b8e
commit 9786258b4d
No known key found for this signature in database
GPG Key ID: D415BF253B515976
1 changed files with 22 additions and 0 deletions

View File

@ -17201,3 +17201,25 @@ and cuts down boilerplate code when testing libraries for asyncio.")
(synopsis "Patch python built-in objects")
(description "This project allows Python code to extend built-in types.")
(license (list license:gpl3+ 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)))