guix-devel
[Top][All Lists]
Advanced

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

[PATCH 07/23] gnu: Add python-zope-schema.


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

* gnu/packages/python.scm (python-zope-schema, python2-zope-schema): 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 0b334e5..c4d680a 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -6079,3 +6079,29 @@ conforming to a given API or contract.")
 
 (define-public python2-zope-i18nmessageid
   (package-with-python2 python-zope-i18nmessageid))
+
+(define-public python-zope-schema
+  (package
+    (name "python-zope-schema")
+    (version "4.4.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://pypi.python.org/packages/source/z";
+                           "/zope.schema/zope.schema-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1p943jdxb587dh7php4vx04qvn7b2877hr4qs5zyckvp5afhhank"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-zope-event" ,python-zope-event)
+       ("python-zope-interface" ,python-zope-interface)))
+    (native-inputs
+     `(("python-zope-testing" ,python-zope-testing)))
+    (home-page "http://pypi.python.org/pypi/zope.schema";)
+    (synopsis "Extension to zope.interface for defining data schemas")
+    (description "Extension to zope.interface for defining data schemas")
+    (license zpl2.1)))
+
+(define-public python2-zope-schema
+  (package-with-python2 python-zope-schema))
-- 
2.6.2




reply via email to

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