From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyril Roelandt Subject: [PATCH] gnu: Add python-aiotest. Date: Mon, 13 Jul 2015 04:33:14 +0200 Message-ID: <1436754794-12613-1-git-send-email-tipecaml@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41214) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZETYc-0004KU-Aw for guix-devel@gnu.org; Sun, 12 Jul 2015 22:33:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZETYZ-0004JC-5n for guix-devel@gnu.org; Sun, 12 Jul 2015 22:33:26 -0400 Received: from mail-wi0-x236.google.com ([2a00:1450:400c:c05::236]:36616) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZETYY-0004Id-VX for guix-devel@gnu.org; Sun, 12 Jul 2015 22:33:23 -0400 Received: by widjy10 with SMTP id jy10so56436159wid.1 for ; Sun, 12 Jul 2015 19:33:21 -0700 (PDT) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * 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