diff options
author | Lars-Dominik Braun <[email protected]> | 2020-03-30 08:28:15 +0200 |
---|---|---|
committer | Leo Famulari <[email protected]> | 2020-03-30 14:49:49 -0400 |
commit | 4edefc507594d81463ad257b8e0a6a824e2a7114 (patch) | |
tree | 8b5e33f6caa5be0ae51bb4cb45dea939326c3b88 /gnu | |
parent | 5199be620f2a8f42fd5427ad000f8f215a852426 (diff) |
gnu: Add python-aiounittest.
* gnu/packages/check.scm (python-aiounittest): New variable.
Signed-off-by: Leo Famulari <[email protected]>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/check.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 1b60b99ce1..c5a886ecae 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -30,6 +30,7 @@ ;;; Copyright © 2018 Fis Trivial <[email protected]> ;;; Copyright © 2019 Pierre Langlois <[email protected]> ;;; Copyright © 2019 Chris Marusich <[email protected]> +;;; Copyright © 2020 Lars-Dominik Braun <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -2509,3 +2510,25 @@ system. The code under test requires no modification to work with pyfakefs.") (define-public python2-pyfakefs (package-with-python2 python-pyfakefs)) + +(define-public python-aiounittest + (package + (name "python-aiounittest") + (version "1.3.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "aiounittest" version)) + (sha256 + (base32 + "1q4bhmi80smaa1lknvdna0sx3915naczlfna1fp435nf6cjyrjl1")))) + (build-system python-build-system) + (native-inputs + `(("python-coverage" ,python-coverage) + ("python-nose" ,python-nose))) + (home-page + "https://github.com/kwarunek/aiounittest") + (synopsis "Test asyncio code more easily") + (description "Aiounittest is a library that helps write tests using +asynchronous code in Python (asyncio).") + (license license:expat))) |