* gnu/packages/python.scm (python-aiotest, python2-aiotest): New variables. --- gnu/packages/python.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 5dcaba0..e3ec13a 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -4051,3 +4051,31 @@ complexity of Python source code.") (define-public python2-flake8 (package-with-python2 python-flake8)) + +(define-public python-aiotest + (package + (name "python-aiotest") + (version "0.2") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/source/a/aiotest/aiotest-" + version + ".tar.gz")) + (sha256 + (base32 + "179n8n4clf7znb3dc0h1369mahbk1jnxk8pvpg56jdhz122lvhf5")))) + (build-system python-build-system) + (inputs + `(("python-setuptools" ,python-setuptools))) + (home-page "https://pypi.python.org/pypi/aiotest") + (synopsis + "Test suite to validate an implementation of PEP 3156 (the asyncio API)") + (description + "Aiotest is a test suite to validate the implementation of PEP 3156 in +Python 2.x, 3.2, 3.3 and 3.4") + (license asl2.0))) + +(define-public python2-aiotest + (package-with-python2 python-aiotest)) -- 2.1.4