diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-10 08:47:18 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-10 08:47:24 +0000 |
| commit | 1ce964ef9c09668335fe9e8551cfa61e97d4a084 (patch) | |
| tree | d6084013a0adc52f3553f35837f37bfd7fb0583f /gnu/packages/databases.scm | |
| parent | 8f49a27b3625b05200e807f121b72d357772519a (diff) | |
gnu: python-dogpile-cache: Update to 1.3.4.
* gnu/packages/databases.scm (python-dogpile-cache): Update to 1.3.4.
[build-system]: Swap to pyproject-build-system.
[propagated-inputs]: Add python-typing-extensions.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: I782c7697b845c6fb446e49aafb52d34ca824bf0c
Diffstat (limited to 'gnu/packages/databases.scm')
| -rw-r--r-- | gnu/packages/databases.scm | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index b91c13a1fdf..6876b9b38a3 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -5729,23 +5729,23 @@ compatible with SQLite using a graphical user interface.") (define-public python-dogpile-cache (package (name "python-dogpile-cache") - (version "1.1.8") - (source (origin - (method url-fetch) - (uri (pypi-uri "dogpile.cache" version)) - (sha256 - (base32 - "0kpx42vxzss4sz5ic6mp01a97zinzm6q76n8li2gbi4ccfxyhi6q")))) - (build-system python-build-system) - (arguments - '(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "pytest"))))))) - (native-inputs (list python-mako python-pytest)) - (propagated-inputs (list python-decorator python-stevedore)) + (version "1.3.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "dogpile_cache" version)) + (sha256 + (base32 "1h58g3iyv6gc6x3in252d4c1v5sncvishjy82dz3zpazbxbra0jg")))) + (build-system pyproject-build-system) + (native-inputs + (list python-mako + python-pytest + python-setuptools + python-wheel)) + (propagated-inputs + (list python-decorator + python-stevedore + python-typing-extensions)) (home-page "https://github.com/sqlalchemy/dogpile.cache") (synopsis "Caching front-end based on the Dogpile lock") (description "@code{dogpile.cache} is a caching API which provides a |
