From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH 17/31] gnu: Add python-subunit. Date: Fri, 5 Sep 2014 11:18:23 -0400 Message-ID: <1409930317-13220-17-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]:32942) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPvI9-0001HJ-VB for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XPvI3-0003es-Fx for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:13 -0400 Received: from na3sys009aog129.obsmtp.com ([74.125.149.142]:58075) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPvI3-0003eW-9m for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:07 -0400 Received: by mail-yh0-f42.google.com with SMTP id z6so682847yhz.1 for ; Fri, 05 Sep 2014 08:19:06 -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-subunit, python2-subunit): New variables. --- gnu/packages/python.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 9af90d2..e48444d 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1239,6 +1239,35 @@ use of resources by test cases.") (define-public python2-testresources (package-with-python2 python-testresources)) +(define-public python-subunit + (package + (name "python-subunit") + (version "0.0.21") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/source/p/python-subunit/python-subunit-" + version ".tar.gz")) + (sha256 + (base32 + "1nkw9wfbvizmpajbj3in8ns07g7lwkiv8hip14jjlwk3cacls6jv")))) + (build-system python-build-system) + (inputs + `(("python-setuptools" ,python-setuptools) + ("python-testtools" ,python-testtools) + ("python-mimeparse" ,python-mimeparse) + ("python-testscenarios" ,python-testscenarios))) + (home-page "http://launchpad.net/subunit") + (synopsis "Python implementation of the subunit protocol") + (description + "Python-subunit is a Python implementation of the subunit test streaming +protocol.") + (license (list bsd-3 asl2.0)))) + +(define-public python2-subunit + (package-with-python2 python-subunit)) + (define-public behave (package (name "behave") -- 2.0.1