guix-commits
[Top][All Lists]
Advanced

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

04/09: gnu: Add python-memcached.


From: guix-commits
Subject: 04/09: gnu: Add python-memcached.
Date: Tue, 29 Oct 2019 03:40:20 -0400 (EDT)

mothacehe pushed a commit to branch master
in repository guix.

commit aee92957b5032196cb830f0288557de864c9c644
Author: Tanguy Le Carrour <address@hidden>
Date:   Mon Oct 28 15:41:32 2019 +0100

    gnu: Add python-memcached.
    
    * gnu/packages/python-xyz.scm (python-memcached): New public variable.
    
    Signed-off-by: Mathieu Othacehe <address@hidden>
---
 gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index edca719..e082351 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -10664,6 +10664,28 @@ implementation as been adapted, improved and fixed 
from Molten.")
 running in.")
     (license license:isc)))
 
+(define-public python-memcached
+  (package
+    (name "python-memcached")
+    (version "1.59")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "python-memcached" version))
+       (sha256
+        (base32
+         "0kvyapavbirk2x3n1jx4yb9nyigrj1s3x15nm3qhpvhkpqvqdqm2"))))
+    (build-system python-build-system)
+    (propagated-inputs `(("python-six" ,python-six)))
+    (home-page
+     "https://github.com/linsomniac/python-memcached";)
+    (synopsis "Pure python memcached client")
+    (description
+     "This software is a pure Python interface to the memcached memory cache
+daemon.  It is the client side software which allows storing values in one or
+more, possibly remote, memcached servers.")
+    (license license:psfl)))
+
 (define-public python-lazy-object-proxy
   (package
     (name "python-lazy-object-proxy")



reply via email to

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