guix-commits
[Top][All Lists]
Advanced

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

11/23: gnu: Add python-zope-security.


From: David Thompson
Subject: 11/23: gnu: Add python-zope-security.
Date: Fri, 04 Dec 2015 18:19:51 +0000

davexunit pushed a commit to branch wip-lets-encrypt
in repository guix.

commit 4673377b7cd64c2ab3e531f57f3b12d0597f6c7e
Author: Leo Famulari <address@hidden>
Date:   Sun Nov 8 22:05:29 2015 -0500

    gnu: Add python-zope-security.
    
    * gnu/packages/python.scm (python-zope-security,
      python2-zope-security): New variables.
---
 gnu/packages/python.scm |   30 ++++++++++++++++++++++++++++++
 1 files changed, 30 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index dfc3082..faa9281 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -6279,3 +6279,33 @@ brokering, etc.) for which the proxy is responsible.")
 
 (define-public python2-zope-location
   (package-with-python2 python-zope-location))
+
+(define-public python-zope-security
+  (package
+    (name "python-zope-security")
+    (version "4.0.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://pypi.python.org/packages/source/z";
+                           "/zope.security/zope.security-" version ".tar.gz"))
+       (sha256
+        (base32
+         "14zmf684amc0x32kq05yxnhfqd1cmyhafkw05gn81rn90zjv6ssy"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-zope-i18nmessageid" ,python-zope-i18nmessageid)
+       ("python-zope-component" ,python-zope-component)
+       ("python-zope-location" ,python-zope-location)
+       ("python-zope-proxy" ,python-zope-proxy)
+       ("python-zope-schema" ,python-zope-schema)
+       ("python-zope-testrunner" ,python-zope-testrunner)
+       ("python-zope-testing" ,python-zope-testing)))
+    (home-page "http://pypi.python.org/pypi/zope.security";)
+    (synopsis "Zope security framework")
+    (description "Zope.security provides a generic mechanism to implement
+security policies on Python objects.")
+    (license zpl2.1)))
+
+(define-public python2-zope-security
+  (package-with-python2 python-zope-security))



reply via email to

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