guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add python-pymemcache.


From: guix-commits
Subject: branch master updated: gnu: Add python-pymemcache.
Date: Fri, 29 Dec 2023 07:27:38 -0500

This is an automated email from the git hooks/post-receive script.

rekado pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 4d8b93e865 gnu: Add python-pymemcache.
4d8b93e865 is described below

commit 4d8b93e865ba71d2baa606d11529c3ecb5f14aea
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Fri Dec 29 11:20:35 2023 +0100

    gnu: Add python-pymemcache.
    
    * gnu/packages/python-xyz.scm (python-pymemcache): New variable.
    
    Change-Id: I2141c79d01d8a59e9cd4ee2fbef608ba882ffaa9
---
 gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ee689809a3..bac82b4893 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20288,6 +20288,31 @@ etc.")
      support.")
     (license license:bsd-3)))
 
+(define-public python-pymemcache
+  (package
+    (name "python-pymemcache")
+    (version "4.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pymemcache" version))
+       (sha256
+        (base32 "157z9blr8pjg9x84jph5hm0z2l6yaq6n421jcf1hzqn1pg8rpgr7"))))
+    (build-system pyproject-build-system)
+    (arguments
+     ;; We don't have the zstd module.
+     (list
+      #:test-flags
+      '(list "--ignore=pymemcache/test/test_compression.py")))
+    (native-inputs
+     (list python-faker python-pytest python-pytest-cov))
+    (home-page "https://github.com/pinterest/pymemcache";)
+    (synopsis "Comprehensive, fast, pure Python memcached client")
+    (description
+     "This package provides a comprehensive, fast, pure Python memcached
+client.")
+    (license license:asl2.0)))
+
 (define-public python-pymodbus
   (package
     (name "python-pymodbus")



reply via email to

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