From ef4313c45c7c8d802b27918068b1583e5f863210 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 29 Dec 2025 11:40:53 +0100 Subject: [PATCH] python314Packages.uvloop: skip failing test on x86_64-darwin --- pkgs/development/python-modules/uvloop/default.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/uvloop/default.nix b/pkgs/development/python-modules/uvloop/default.nix index 06de4afd62f9..31bbc7a7f2d7 100644 --- a/pkgs/development/python-modules/uvloop/default.nix +++ b/pkgs/development/python-modules/uvloop/default.nix @@ -80,13 +80,10 @@ buildPythonPackage rec { # Broken: https://github.com/NixOS/nixpkgs/issues/160904 "tests/test_context.py::Test_UV_Context::test_create_ssl_server_manual_connection_lost" ] - ++ - lib.optionals - (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64 && pythonAtLeast "3.14") - [ - # https://github.com/MagicStack/uvloop/issues/709 - "tests/test_process.py::TestAsyncio_AIO_Process::test_cancel_post_init" - ]; + ++ lib.optionals (stdenv.hostPlatform.isDarwin && pythonAtLeast "3.14") [ + # https://github.com/MagicStack/uvloop/issues/709 + "tests/test_process.py::TestAsyncio_AIO_Process::test_cancel_post_init" + ]; preCheck = '' # force using installed/compiled uvloop