diff options
author | Efraim Flashner | 2019-06-27 11:54:50 -0500 |
---|---|---|
committer | Efraim Flashner | 2019-06-27 11:54:50 -0500 |
commit | eac64d6ae88ccc04c15b2e0ddec925bbf8c43d09 (patch) | |
tree | 82b3f60f080c00812380f1c0560d0d5bbc5d4830 /gn | |
parent | 04ab1dc462fced3994038be733791aac5351bd74 (diff) | |
download | guix-bioinformatics-eac64d6ae88ccc04c15b2e0ddec925bbf8c43d09.tar.gz |
gn: Add python24-asserts.
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/python24.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gn/packages/python24.scm b/gn/packages/python24.scm index e9c8798..a44bb09 100644 --- a/gn/packages/python24.scm +++ b/gn/packages/python24.scm @@ -126,3 +126,24 @@ read read ssl ssl tcl tcl tk tk ,(version-major+minor (package-version tcl)) ,(v (arguments `(#:python ,python-2.4 #:tests? #f)))) ; skip the tests + +(define-public python24-asserts + (package + (name "python24-asserts") + (version "0.6") + (source + (origin + (method url-fetch) + (uri (pypi-uri "asserts" version)) + (sha256 + (base32 + "05ffy111giwv6sqx97vzzsvcra0gxzx2ilv16gyw135v583frxbn")))) + (build-system python-build-system) + (arguments + `(#:python ,python-2.4)) + (native-inputs + `(("python24-setuptools" ,python24-setuptools))) + (home-page "https://github.com/srittau/python-asserts") + (synopsis "Stand-alone Assertions for Python") + (description "Stand-alone Assertions for Python") + (license license:expat))) |