From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: [PATCH 03/23] gnu: Add python-zope-exceptions. Date: Tue, 24 Nov 2015 16:02:03 -0500 Message-ID: <11602d5aeccd5cf3f7c5f96eec95665190eeba0a.1448398884.git.leo@famulari.name> References: Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43530) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a1KhQ-0002D4-Rw for guix-devel@gnu.org; Tue, 24 Nov 2015 16:00:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a1KhL-0003ZZ-Su for guix-devel@gnu.org; Tue, 24 Nov 2015 16:00:28 -0500 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:57716) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a1KhL-0003ZB-QH for guix-devel@gnu.org; Tue, 24 Nov 2015 16:00:23 -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 ADBEB6801AC 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-exceptions, python2-zope-exceptions): New variables. --- gnu/packages/python.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 756b93a..90fb51f 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5972,3 +5972,29 @@ conforming to a given API or contract.") (define-public python2-zope-interface (package-with-python2 python-zope-interface)) + +(define-public python-zope-exceptions + (package + (name "python-zope-exceptions") + (version "4.0.8") + (source + (origin + (method url-fetch) + (uri (string-append "https://pypi.python.org/packages/source/z" + "/zope.exceptions/zope.exceptions-" + version ".tar.gz")) + (sha256 + (base32 + "0zwxaaa66sqxg5k7zcrvs0fbg9ym1njnxnr28dfmchzhwjvwnfzl")))) + (build-system python-build-system) + (arguments + '(#:tests? #f)) ; circular dependency with zope.testrunner + (propagated-inputs + `(("python-zope-interface" ,python-zope-interface))) + (home-page "http://cheeseshop.python.org/pypi/zope.exceptions") + (synopsis "Zope Exceptions") + (description "Zope Exceptions") + (license zpl2.1))) + +(define-public python2-zope-exceptions + (package-with-python2 python-zope-exceptions)) -- 2.6.2