From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: [PATCH 10/23] gnu: Add python-zope-location. Date: Tue, 24 Nov 2015 16:02:10 -0500 Message-ID: <1b5661c326563649e4c74e4644f24970b3011d7b.1448398884.git.leo@famulari.name> References: Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43464) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a1KhP-0002CO-If 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 1a1KhN-0003aj-Ud for guix-devel@gnu.org; Tue, 24 Nov 2015 16:00:27 -0500 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:41708) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a1KhN-0003af-RK 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 87386680122 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-location, python2-zope-location): New variables. --- gnu/packages/python.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 4e6fe55..b00535b 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -6152,3 +6152,27 @@ conforming to a given API or contract.") (define-public python2-zope-proxy (package-with-python2 python-zope-proxy)) + +(define-public python-zope-location + (package + (name "python-zope-location") + (version "4.0.3") + (source + (origin + (method url-fetch) + (uri (string-append "https://pypi.python.org/packages/source/z" + "/zope.location/zope.location-" version ".tar.gz")) + (sha256 + (base32 + "1nj9da4ksiyv3h8n2vpzwd0pb03mdsh7zy87hfpx72b6p2zcwg74")))) + (build-system python-build-system) + (native-inputs + `(("python-zope-proxy" ,python-zope-proxy) + ("python-zope-schema" ,python-zope-schema))) + (home-page "http://pypi.python.org/pypi/zope.location/") + (synopsis "Zope Location") + (description "Zope Location") + (license zpl2.1))) + +(define-public python2-zope-location + (package-with-python2 python-zope-location)) -- 2.6.2