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

commit 5b707d0505b517c1cdbd5804b6bbe6ba4b631a77
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Nov 26 17:37:52 2024 +0000

    gnu: python-watchgod: Fix build.
    
    The latest version depends on a long list of Rust packages and maturin
    build system, this change just fixes the build.
    
    * gnu/packages/python-xyz.scm (python-watchgod):
    [arguments]<phases>: Remove 'sanity-check, all tests passed.
    [native-inputs]: Remove python-pytest-toolbox.
    
    Change-Id: I36e84ed09a2321636257c0a5528bf01aea1d2d7e
---
 gnu/packages/python-xyz.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5a84f052e2..da05a87dc5 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -31501,7 +31501,9 @@ but portable.")
     (arguments
      (list #:test-flags '(list "-o" "asyncio_mode=auto"
                                ;; PytestUnraisableExceptionWarning
-                               "-k" "not test_watch_log and not test_awatch")))
+                               "-k" "not test_watch_log and not test_awatch")
+       #:phases #~(modify-phases %standard-phases
+                  (delete 'sanity-check))))
     (native-inputs
      (list python-anyio
            python-coverage
@@ -31511,7 +31513,6 @@ but portable.")
            python-pytest-cov
            python-pytest-mock
            python-pytest-sugar
-           python-pytest-toolbox
            python-setuptools
            python-wheel))
     (home-page "https://github.com/samuelcolvin/watchgod";)

Reply via email to