From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: [PATCH 05/23] gnu: Add python-zope-testrunner. Date: Tue, 24 Nov 2015 16:02:05 -0500 Message-ID: <63e603ddd0962da1babc7ab7bfd319e25449d0e9.1448398884.git.leo@famulari.name> References: Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43446) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a1KhP-0002CI-65 for guix-devel@gnu.org; Tue, 24 Nov 2015 16:00:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a1KhM-0003Zx-Km for guix-devel@gnu.org; Tue, 24 Nov 2015 16:00:27 -0500 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:44693) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a1KhM-0003Zm-H3 for guix-devel@gnu.org; Tue, 24 Nov 2015 16:00:24 -0500 Received: from jasmine.lan (c-69-249-5-231.hsd1.pa.comcast.net [69.249.5.231]) by mail.messagingengine.com (Postfix) with ESMTPA id 02F7F6801B5 for ; Tue, 24 Nov 2015 16:00:22 -0500 (EST) In-Reply-To: In-Reply-To: References: 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-zope-testrunner, python2-zope-testrunner): New variables. --- gnu/packages/python.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 40bcfec..59caeaa 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -6023,3 +6023,34 @@ conforming to a given API or contract.") (define-public python2-zope-testing (package-with-python2 python-zope-testing)) + +(define-public python-zope-testrunner + (package + (name "python-zope-testrunner") + (version "4.4.9") + (source + (origin + (method url-fetch) + (uri (string-append "https://pypi.python.org/packages/source/z" + "/zope.testrunner/zope.testrunner-" + version ".zip")) + (sha256 + (base32 + "1r7iqknhh55y45f64mz5hghgvzx34h1i11k350s0avx6q8gznja1")))) + (build-system python-build-system) + (native-inputs + `(("python-six" ,python-six) + ("python-zope-exceptions" ,python-zope-exceptions) + ("python-subunit" ,python-subunit) + ("python-mimeparse" ,python-mimeparse) + ("python-zope-testing" ,python-zope-testing) + ("unzip" ,unzip))) + (propagated-inputs + `(("python-zope-interface" ,python-zope-interface))) + (home-page "http://pypi.python.org/pypi/zope.testrunner") + (synopsis "Zope testrunner script.") + (description "Zope testrunner script.") + (license zpl2.1))) + +(define-public python2-zope-testrunner + (package-with-python2 python-zope-testrunner)) -- 2.6.2