diff options
author | Muriithi Frederick Muriuki | 2018-12-14 09:27:37 +0300 |
---|---|---|
committer | Muriithi Frederick Muriuki | 2018-12-14 09:27:37 +0300 |
commit | ad5a65a1bbe03c084217ede067f665388b5cfa90 (patch) | |
tree | 2b6865af78bb756e5d1af1ba8b481cf6919326d1 /gn/packages/edash.scm | |
parent | 7c12b67978cc419fa3372921e40bb13c90d51ad1 (diff) | |
download | guix-bioinformatics-ad5a65a1bbe03c084217ede067f665388b5cfa90.tar.gz |
gn: Add new package
* gn/packages/edash.scm (python-pytest-aiohttp): New variable.
Diffstat (limited to 'gn/packages/edash.scm')
-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 aacb726..d60a03a 100644 --- a/gn/packages/edash.scm +++ b/gn/packages/edash.scm @@ -242,6 +242,27 @@ necessary.") "A collection of helpers and mock objects for unit tests and doc tests.") (license license:expat))) +(define-public python-pytest-aiohttp + (package + (name "python-pytest-aiohttp") + (version "0.3.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pytest-aiohttp" version)) + (sha256 + (base32 + "0kx4mbs9bflycd8x9af0idcjhdgnzri3nw1qb0vpfyb3751qaaf9")))) + (build-system python-build-system) + (propagated-inputs + `(("python-aiohttp" ,python-aiohttp) + ("python-pytest" ,python-pytest))) + (home-page + "https://github.com/aio-libs/pytest-aiohttp/") + (synopsis "pytest plugin for aiohttp support") + (description "pytest plugin for aiohttp support") + (license license:asl2.0))) + (define-public edash (let ((md5 "93e745e9c")) (package |