diff options
author | Muriithi Frederick Muriuki | 2018-12-14 10:31:21 +0300 |
---|---|---|
committer | Muriithi Frederick Muriuki | 2018-12-14 10:31:21 +0300 |
commit | f0cbb378438314e9369fa95cd47cebd2a16f8d01 (patch) | |
tree | 70155bb0929233e987ed724cd9463853b85ce757 /gn/packages | |
parent | 58cebd37c6400c0d7da7cdaca277c5b0cad028b5 (diff) | |
download | guix-bioinformatics-f0cbb378438314e9369fa95cd47cebd2a16f8d01.tar.gz |
gn: Add new package
* gn/packages/edash.scm (python-async-timeout-3.0.1): New variable.
Diffstat (limited to 'gn/packages')
-rw-r--r-- | gn/packages/edash.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gn/packages/edash.scm b/gn/packages/edash.scm index 57776dd..bbd7d15 100644 --- a/gn/packages/edash.scm +++ b/gn/packages/edash.scm @@ -242,6 +242,26 @@ necessary.") "A collection of helpers and mock objects for unit tests and doc tests.") (license license:expat))) +(define-public python-async-timeout-3.0.1 + (package + (name "python-async-timeout") + (version "3.0.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "async-timeout" version)) + (sha256 + (base32 + "0pscbyr840m7fyfc3r8zv9kgkwdcn9f78p7zsrczciwd09m82g0c")))) + (build-system python-build-system) + (home-page + "https://github.com/aio-libs/async_timeout/") + (synopsis + "Timeout context manager for asyncio programs") + (description + "Timeout context manager for asyncio programs") + (license license:asl2.0))) + (define-public python-pytest-aiohttp (package (name "python-pytest-aiohttp") |