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

commit 80937dcbbd1d03681f7df57bb99e60b25da2044e
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jun 11 15:45:42 2026 +0100

    gnu: python-flaky: Build from git.
    
    * gnu/packages/check.scm (python-flaky):
    [source]: Switch to git-fetch.
    [native-inputs]: Remove python-wheel.
    
    Change-Id: Iaea9bd9ec1369847d72bc25030d29056eb7b6006
---
 gnu/packages/check.scm | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index b1a6c17ac1..e21280cf89 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -3113,12 +3113,15 @@ time by mocking the datetime module.")
   (package
     (name "python-flaky")
     (version "3.8.1")  ; On bump, remove some skipped tests in python-cherrypy.
-    (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "flaky" version))
-              (sha256
-               (base32
-                "1xcrjrr63131n2ydj5hn0gagka5dpkmdlqdxrxd3spwhxj0ll827"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/box/flaky";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1fyqrcny7v6wnyir2ys242cabxh42j39716fn890dig9ik2f86ck"))))
     (build-system pyproject-build-system)
     (arguments
      (list
@@ -3135,8 +3138,7 @@ time by mocking the datetime module.")
                     " and not test_something_flaky"))))
     (native-inputs
      (list python-pytest
-           python-setuptools
-           python-wheel))
+           python-setuptools))
     (home-page "https://github.com/box/flaky";)
     (synopsis "Automatically rerun flaky tests")
     (description

Reply via email to