gnu: Add python-cachetools.
* gnu/packages/python-xyz.scm (python-cachetools): New variable.
This commit is contained in:
parent
bd32bcca56
commit
4ad3f818c9
1 changed files with 18 additions and 0 deletions
|
@ -244,6 +244,24 @@ (define-public python-argopt
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue