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

commit 9c5d5559c3d0f127c7f6d7b7b941d83337865e1c
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Jun 1 16:06:30 2026 +0100

    gnu: python-freezegun: Update to 1.5.5.
    
    * gnu/packages/check.scm (python-freezegun): Update to 1.5.5.
    [source]: Switch to git-fetch.
    [native-inputs]: Remove python-wheel.
    
    Change-Id: Ib6e9cc27eb06075e2cb26bbecf362eb95c832802
---
 gnu/packages/check.scm | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index b082da0477..109a46c1a6 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -3086,18 +3086,20 @@ tests written in a natural language style, backed up by 
Python code.")
 (define-public python-freezegun
   (package
     (name "python-freezegun")
-    (version "1.5.3")
+    (version "1.5.5")
     (source
      (origin
-       (method url-fetch)
-       (uri (pypi-uri "freezegun" version))
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/spulec/freezegun";)
+              (commit version)))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "0pmwcjf0vxmars4kncb35pvrckp0j97lya5aqzbzy2m56d721inp"))))
+        (base32 "0jh2fvf1zq0h8mv2mqfhfpgzhbn9ybjrp412g0zzapyfbc2a8kph"))))
     (build-system pyproject-build-system)
     (native-inputs
      (list python-pytest
-           python-setuptools
-           python-wheel))
+           python-setuptools))
     (propagated-inputs
      (list python-dateutil))
     (home-page "https://github.com/spulec/freezegun";)

Reply via email to