guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 10/23] gnu: Add python-zope-location.


From: Leo Famulari
Subject: [PATCH 10/23] gnu: Add python-zope-location.
Date: Tue, 24 Nov 2015 16:02:10 -0500

* 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]