[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/08: gnu: Add python-cachelib.
From: |
guix-commits |
Subject: |
07/08: gnu: Add python-cachelib. |
Date: |
Mon, 8 Nov 2021 15:37:33 -0500 (EST) |
efraim pushed a commit to branch master
in repository guix.
commit 71dc19d9cba0c8d03540ab62cf5390442c0f8948
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Thu Oct 21 03:52:49 2021 +0000
gnu: Add python-cachelib.
* gnu/packages/python-xyz.scm (python-cachelib): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
gnu/packages/python-xyz.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2836cf7..6cf42f1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -11154,6 +11154,25 @@ package to infer file type and MIME type checking the
magic numbers
signature of a file or buffer.")
(license license:expat)))
+(define-public python-cachelib
+ (package
+ (name "python-cachelib")
+ (version "0.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "cachelib" version))
+ (sha256
+ (base32 "0vs7nimlbhqy9kjcc90nswkhs3kgl28ag19jssx9qwlcsrkmmsa7"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f)) ;no tests
+ (home-page "https://github.com/pallets/cachelib")
+ (synopsis "Collection of cache libraries")
+ (description "Cachelib is a library extracted from @code{werkzeug} which
+provides a collection of cache libraries in the same API interface.")
+ (license license:bsd-3)))
+
(define-public python-legacy-api-wrap
(package
(name "python-legacy-api-wrap")
- branch master updated (b6e1ba6 -> 590074a), guix-commits, 2021/11/08
- 02/08: gnu: hypercorn: Update to 0.11.2., guix-commits, 2021/11/08
- 01/08: gnu: python-hypercorn: Remove "python-" prefix from name., guix-commits, 2021/11/08
- 03/08: gnu: hypercorn: Honor #:tests? in 'check' phase., guix-commits, 2021/11/08
- 04/08: gnu: Add python-filetype., guix-commits, 2021/11/08
- 06/08: gnu: Add python-emoji., guix-commits, 2021/11/08
- 05/08: gnu: Add python-immutabledict., guix-commits, 2021/11/08
- 08/08: gnu: python-cachelib: Update to 0.4.1., guix-commits, 2021/11/08
- 07/08: gnu: Add python-cachelib.,
guix-commits <=