guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit bacc5f648c6ef591fb25d8b9725afbfc2de179fe
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Sun Jul 13 09:58:02 2025 +0100

    gnu: python-cachetools: Update to 6.1.0.
    
    * gnu/packages/python-xyz.scm (python-cachetools): Update to 6.1.0.
    [native-inputs]: Add python-pytest.
    
    Change-Id: Icf7cc10f1d91510074aded5e15e1f287bef02652
---
 gnu/packages/python-xyz.scm | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 86bc6de875..39a36ede60 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1959,15 +1959,18 @@ libraries to make them compatible with the Array API 
standard")
 (define-public python-cachetools
   (package
     (name "python-cachetools")
-    (version "5.5.0")
-    (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "cachetools" version))
-              (sha256
-               (base32
-                "0ahg0mfp2ijsf92z5599kinpcp99lsfdpnddggxk75p3rfs4zhic"))))
+    (version "6.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "cachetools" version))
+       (sha256
+        (base32 "11s5ajy31r08228nd2sbv9jdir3vs584khxawwydnj18742g9i5l"))))
     (build-system pyproject-build-system)
-    (native-inputs (list python-setuptools python-wheel))
+    (native-inputs
+     (list python-pytest
+           python-setuptools
+           python-wheel))
     (home-page "https://github.com/tkem/cachetools/";)
     (synopsis "Extensible memoizing collections and decorators")
     (description "This module provides various memoizing collections and

Reply via email to