diff options
author | Muriithi Frederick Muriuki | 2018-12-14 09:01:46 +0300 |
---|---|---|
committer | Muriithi Frederick Muriuki | 2018-12-14 09:01:46 +0300 |
commit | 818f932addacac0451657794602207523a2ac4f5 (patch) | |
tree | 641fafcaf2795004f5b34ef3334706aee432e1d8 /gn/packages/edash.scm | |
parent | a5da857d712d2cb648beae52624a3e2db27f0cd1 (diff) | |
download | guix-bioinformatics-818f932addacac0451657794602207523a2ac4f5.tar.gz |
gn: Add new package
* gn/packages/edash.scm (python-tests): New package.
Diffstat (limited to 'gn/packages/edash.scm')
-rw-r--r-- | gn/packages/edash.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gn/packages/edash.scm b/gn/packages/edash.scm index b5ba6b5..b7478c5 100644 --- a/gn/packages/edash.scm +++ b/gn/packages/edash.scm @@ -172,6 +172,25 @@ interface to the Amazon Web Services (AWS) API.") "Ultra fast JSON encoder and decoder for Python") (license license:bsd-3))) +(define-public python-tests + (package + (name "python-tests") + (version "0.007") + (source + (origin + (method url-fetch) + (uri (pypi-uri "tests" version ".zip")) + (sha256 + (base32 + "09nfrysnqivqhs7znync8k87v16anvnb02j9ikmr3i6hdqxjcd31")))) + (build-system python-build-system) + (inputs + `(("unzip" ,unzip))) + (home-page "http://www.propython.com/") + (synopsis "UNKNOWN") + (description "UNKNOWN") + (license #f))) + (define-public edash (let ((md5 "93e745e9c")) (package |