guix-devel
[Top][All Lists]
Advanced

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

[PATCH 07/18] gnu: Add python-repoze.lru.


From: ng0
Subject: [PATCH 07/18] gnu: Add python-repoze.lru.
Date: Sun, 2 Oct 2016 11:00:44 +0000

* gnu/packages/python.scm (python-repoze.lru): New variable.
---
 gnu/packages/python.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 37a8010..61c97e2 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -1814,6 +1814,33 @@ result back.")
       (native-inputs `(("python2-setuptools" ,python2-setuptools)
                        ,@(package-native-inputs base))))))
 
+(define-public python-repoze.lru
+  (package
+    (name "python-repoze.lru")
+    (version "0.6")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "repoze.lru" version))
+       (sha256
+        (base32
+         "0cdx3fq67qfcdrb3h9rjjcvks2zfrgyd834indncplqnywxk4yhg"))))
+    (build-system python-build-system)
+    (home-page "http://www.repoze.org";)
+    (synopsis "Tiny LRU cache implementation and decorator")
+    (description
+     "Repoze integrates Zope technologies with WSGI and reusable Python 
middleware.")
+    (properties `((python2-variant . ,(delay python2-repoze.lru))))
+    (license license:repoze)))
+
+(define-public python2-repoze.lru
+  (let ((base (package-with-python2
+               (strip-python2-variant python-repoze.lru))))
+    (package
+      (inherit base)
+      (native-inputs
+       `(("python2-setuptools" ,python2-setuptools))))))
+
 (define-public python-scripttest
   (package
     (name "python-scripttest")
-- 
2.10.0




reply via email to

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