guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit eca2a050a60ed3a7b12c979de42de01f459cc61c
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 3e6ace1a61..21ae99aa93 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17204,8 +17204,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