gnu: Add python-cachelib.

* gnu/packages/python-xyz.scm (python-cachelib): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Vinicius Monego 2021-10-21 03:52:49 +00:00 committed by Efraim Flashner
parent 2181133eed
commit 71dc19d9cb
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -11154,6 +11154,25 @@ (define-public python-filetype
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")