diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-02-19 12:56:38 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-02-19 13:24:11 +0100 |
commit | 0a10ad674481d6e2a4603f3cbfa25fafc93207e1 (patch) | |
tree | 7fa63950c6ccf139be292d62921fbbfbc718f922 /gnu/packages | |
parent | a641396502603458c492cc8d4c804930816e4424 (diff) |
gnu: Add python-limits.
* gnu/packages/python-xyz.scm (python-limits): New variable.
Change-Id: I62e4d8311fe0ccdc43f110a101c8157c19dcd604
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-xyz.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4d149b34d6..9f626b51c1 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -3834,6 +3834,26 @@ and simplified. It supports SPDX license expressions as well as other naming conventions and aliases in the same expression.") (license license:gpl2+))) +(define-public python-limits + (package + (name "python-limits") + (version "4.0.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "limits" version)) + (sha256 + (base32 "0nkdwkvn2rs5swnd4ihv6yg6b5124apqzrrymqcm75pwil2mqkx5")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-deprecated python-packaging + python-typing-extensions)) + (native-inputs (list python-setuptools python-wheel)) + (home-page "https://limits.readthedocs.io/") + (synopsis "Rate limiting utilities") + (description "This package provides a Python library to perform rate +limiting with commonly used storage backends.") + (license license:expat))) + (define-public python-wand (package (name "python-wand") |