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

commit 39ca6a76085222556ff83a4c3ea8559842433bbb
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Jan 18 14:16:24 2026 +0100

    gnu: python-sniffio: Drop python-curio native-input.
    
    * gnu/packages/python-xyz.scm (python-sniffio):
    [arguments] <test-flags>: Skip test requiring curio.
    [native-inputs]: Remove python-curio.
    
    Change-Id: I96678566359cbbfc1ee268c73952b1de6a147959
    Modified-by: Sharlatan Hellseher <[email protected]>
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index fc5b381168..2cdb7c0e0f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17219,8 +17219,12 @@ tasks, sockets, files, locks, and queues.")
        (sha256
         (base32 "1p496yran6zwg47m7w26r8y89nrsbkrrbf4119slj3qaczf4wcpl"))))
     (build-system pyproject-build-system)
+    (arguments
+     (list
+      #:test-flags
+      #~(list "--deselect=sniffio/_tests/test_sniffio.py::test_curio")))
     (native-inputs
-     (list python-curio python-pytest python-setuptools))
+     (list python-pytest python-setuptools))
     (home-page "https://github.com/python-trio/sniffio";)
     (synopsis "Detect which async library a program is running under")
     (description

Reply via email to