[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add python-cachetools.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add python-cachetools. |
Date: |
Fri, 28 May 2021 04:47:40 -0400 |
This is an automated email from the git hooks/post-receive script.
roelj pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 4ad3f81 gnu: Add python-cachetools.
4ad3f81 is described below
commit 4ad3f818c9e2d200bf5c9cf0cf986b1a185d9d5b
Author: Roel Janssen <roel@gnu.org>
AuthorDate: Fri May 28 10:47:16 2021 +0200
gnu: Add python-cachetools.
* gnu/packages/python-xyz.scm (python-cachetools): New variable.
---
gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c4f19b4..d978942 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -244,6 +244,24 @@
from a docstring rather than the other way around.")
(license license:mpl2.0)))
+(define-public python-cachetools
+ (package
+ (name "python-cachetools")
+ (version "4.2.2")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "cachetools" version))
+ (sha256
+ (base32
+ "1zqc098gk6y614lxwqd9z2gm8lldgvrpid133pnlm4m048gfvdb1"))))
+ (build-system python-build-system)
+ (home-page "https://github.com/tkem/cachetools/")
+ (synopsis "Extensible memoizing collections and decorators")
+ (description "This module provides various memoizing collections and
+decorators, including variants of the Python standard library's
+@code{lru_cache} function decorator.")
+ (license license:expat)))
+
(define-public python-colorful
(package
(name "python-colorful")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add python-cachetools.,
guix-commits <=