From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: [PATCH 09/23] gnu: Add python-zope-proxy. Date: Tue, 24 Nov 2015 16:02:09 -0500 Message-ID: <56261b68f0f9b8ca49d35afcc866d8611cbc4f74.1448398884.git.leo@famulari.name> References: Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43443) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a1KhP-0002CF-5J 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 1a1KhN-0003ab-KX for guix-devel@gnu.org; Tue, 24 Nov 2015 16:00:27 -0500 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:38893) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a1KhN-0003aX-Hj for guix-devel@gnu.org; Tue, 24 Nov 2015 16:00:25 -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 6F96C68010A for ; Tue, 24 Nov 2015 16:00:23 -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-proxy, python2-zope-proxy): New variables. --- gnu/packages/python.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 66ca247..4e6fe55 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -6129,3 +6129,26 @@ conforming to a given API or contract.") (define-public python2-zope-configuration (package-with-python2 python-zope-configuration)) + +(define-public python-zope-proxy + (package + (name "python-zope-proxy") + (version "4.1.6") + (source + (origin + (method url-fetch) + (uri (string-append "https://pypi.python.org/packages/source/z" + "/zope.proxy/zope.proxy-" version ".tar.gz")) + (sha256 + (base32 + "0pqwwmvm1prhwv1ziv9lp8iirz7xkwb6n2kyj36p2h0ppyyhjnm4")))) + (build-system python-build-system) + (propagated-inputs + `(("python-zope-interface" ,python-zope-interface))) + (home-page "http://pypi.python.org/pypi/zope.proxy") + (synopsis "Generic Transparent Proxies") + (description "Generic Transparent Proxies") + (license zpl2.1))) + +(define-public python2-zope-proxy + (package-with-python2 python-zope-proxy)) -- 2.6.2