From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH 19/31] gnu: Add python-testrepository. Date: Fri, 5 Sep 2014 11:18:25 -0400 Message-ID: <1409930317-13220-19-git-send-email-dthompson2@worcester.edu> References: <1409930317-13220-1-git-send-email-dthompson2@worcester.edu> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:32995) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPvID-0001P3-FI for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XPvI5-0003g2-U9 for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:17 -0400 Received: from na3sys009aog120.obsmtp.com ([74.125.149.140]:37941) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPvI5-0003fg-Nd for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:09 -0400 Received: by mail-yk0-f180.google.com with SMTP id 9so7034092ykp.25 for ; Fri, 05 Sep 2014 08:19:08 -0700 (PDT) In-Reply-To: <1409930317-13220-1-git-send-email-dthompson2@worcester.edu> 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-testrepository, python2-testrepository): New variables. --- gnu/packages/python.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 76899d6..40e62ac 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1296,6 +1296,36 @@ Python tests.") (define-public python2-fixtures (package-with-python2 python-fixtures)) +(define-public python-testrepository + (package + (name "python-testrepository") + (version "0.0.20") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/source/t/testrepository/testrepository-" + version ".tar.gz")) + (sha256 + (base32 + "1ssqb07c277010i6gzzkbdd46gd9mrj0bi0i8vn560n2k2y4j93m")))) + (build-system python-build-system) + (inputs + `(("python-setuptools" ,python-setuptools) + ("python-testtools" ,python-testtools) + ("python-subunit" ,python-subunit) + ("python-fixtures" ,python-fixtures) + ("python-mimeparse" ,python-mimeparse))) + (home-page "https://launchpad.net/testrepository") + (synopsis "Database for Python test results") + (description "Testrepository provides a database of test results which can +be used as part of a developer's workflow to check things such as what tests +have failed since the last commit or what tests are currently failing.") + (license (list bsd-3 asl2.0)))) + +(define-public python2-testrepository + (package-with-python2 python-testrepository)) + (define-public behave (package (name "behave") -- 2.0.1