From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: [PATCH 04/23] gnu: Add python-zope-testing. Date: Tue, 24 Nov 2015 16:02:04 -0500 Message-ID: References: Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43451) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a1KhP-0002CL-6f 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-0003Zh-4M for guix-devel@gnu.org; Tue, 24 Nov 2015 16:00:27 -0500 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:38554) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a1KhM-0003Zd-1C 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 D366C68009F 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-testing, python2-zope-testing): New variables. --- gnu/packages/python.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 90fb51f..40bcfec 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5998,3 +5998,28 @@ conforming to a given API or contract.") (define-public python2-zope-exceptions (package-with-python2 python-zope-exceptions)) + +(define-public python-zope-testing + (package + (name "python-zope-testing") + (version "4.5.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://pypi.python.org/packages/source/z" + "/zope.testing/zope.testing-" version ".tar.gz")) + (sha256 + (base32 + "1yvglxhzvhl45mndvn9gskx2ph30zz1bz7rrlyfs62fv2pvih90s")))) + (build-system python-build-system) + (native-inputs + `(("python-zope-exceptions" ,python-zope-exceptions))) + (propagated-inputs + `(("python-zope-interface" ,python-zope-interface))) + (home-page "http://pypi.python.org/pypi/zope.testing") + (synopsis "Zope testing helpers") + (description "Zope testing helpers") + (license zpl2.1))) + +(define-public python2-zope-testing + (package-with-python2 python-zope-testing)) -- 2.6.2