summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 04d2b5bf6e1..78fa3ddd471 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -7824,6 +7824,31 @@ advanced features like returning a default value if some variable is not
7824defined.") 7824defined.")
7825 (license license:expat))) 7825 (license license:expat)))
7826 7826
7827(define-public python-expiringdict
7828 (package
7829 (name "python-expiringdict")
7830 (version "1.2.2")
7831 (source
7832 (origin
7833 (method git-fetch)
7834 (uri (git-reference
7835 (url "https://github.com/mailgun/expiringdict")
7836 (commit (string-append "v" version))))
7837 (file-name (git-file-name name version))
7838 (sha256
7839 (base32 "0hkzh62cmsm8i6sh9pcn4bh3ilq0bzdrvw6gz949swraf944j65x"))))
7840 (build-system pyproject-build-system)
7841 (native-inputs
7842 (list python-dill python-mock python-pynose python-setuptools))
7843 (home-page "https://github.com/mailgun/expiringdict")
7844 (synopsis "Dictionary with auto-expiring values for caching purposes")
7845 (description
7846 "This Python library provides an ordered dictionary
7847with a maximum capacity and auto-expiring values for caching purposes.
7848Expiration happens on any access, object is locked during cleanup
7849from expired values.")
7850 (license license:asl2.0)))
7851
7827(define-public python-extension-helpers 7852(define-public python-extension-helpers
7828 (package 7853 (package
7829 (name "python-extension-helpers") 7854 (name "python-extension-helpers")