diff options
author | Muriithi Frederick Muriuki | 2018-12-14 09:20:55 +0300 |
---|---|---|
committer | Muriithi Frederick Muriuki | 2018-12-14 09:20:55 +0300 |
commit | 7c12b67978cc419fa3372921e40bb13c90d51ad1 (patch) | |
tree | 963ccfed327c7d5817352fcfcc9e63c4fc53e10e /gn | |
parent | 9c975510540245161f14b53a4f1e3783e34431cb (diff) | |
download | guix-bioinformatics-7c12b67978cc419fa3372921e40bb13c90d51ad1.tar.gz |
gn: Add new package
* gn/packages/edash.scm (python-testfixtures): New variable.
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/edash.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gn/packages/edash.scm b/gn/packages/edash.scm index 2cc0b69..aacb726 100644 --- a/gn/packages/edash.scm +++ b/gn/packages/edash.scm @@ -221,6 +221,27 @@ command line interfaces in a composable way with as little code as necessary.") (license license:asl2.0))) +(define-public python-testfixtures + (package + (name "python-testfixtures") + (version "6.3.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "testfixtures" version)) + (sha256 + (base32 + "1x16xkw483nb1ngv74s7lgaj514pb1ldklal7kb7iwqbxcgnrh2k")))) + (build-system python-build-system) + (arguments `(#:tests? #f)) + (home-page + "https://github.com/Simplistix/testfixtures") + (synopsis + "Collection of helpers and mock objects for unit tests and doc tests") + (description + "A collection of helpers and mock objects for unit tests and doc tests.") + (license license:expat))) + (define-public edash (let ((md5 "93e745e9c")) (package |