From d5ae2397c709cd6c4e72181f53ff8798efce9f48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Tue, 7 Jul 2026 13:30:20 +0200 Subject: [PATCH] python314Packages.asyncssh: disable another network test --- pkgs/development/python-modules/asyncssh/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/asyncssh/default.nix b/pkgs/development/python-modules/asyncssh/default.nix index 57caf4fc3b30..699b7853a7a0 100644 --- a/pkgs/development/python-modules/asyncssh/default.nix +++ b/pkgs/development/python-modules/asyncssh/default.nix @@ -16,6 +16,7 @@ pytestCheckHook, python-pkcs11, setuptools, + stdenv, typing-extensions, }: @@ -84,6 +85,9 @@ buildPythonPackage rec { "test_put_name_too_long" # SFTP copy ends up with an empty file on ZFS "test_copy_max_requests" + ] + ++ lib.optionals stdenv.hostPlatform.isDarwin [ + "test_canonicalize_failure" ]; pythonImportsCheck = [ "asyncssh" ];