From 15082e8f73f20c812312250443d9ca4fbf7929ee Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Wed, 2 Apr 2025 09:24:30 -0400 Subject: [PATCH] python312Packages.torchsnapshot: disable for darwin again It no longer fails due to missing torch.distributed; but it still fails to pass the test suite nevertheless. Signed-off-by: Ihar Hrachyshka --- pkgs/development/python-modules/torchsnapshot/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/torchsnapshot/default.nix b/pkgs/development/python-modules/torchsnapshot/default.nix index 6b4ee0faf986..90e4c3f2dbbf 100644 --- a/pkgs/development/python-modules/torchsnapshot/default.nix +++ b/pkgs/development/python-modules/torchsnapshot/default.nix @@ -67,5 +67,9 @@ buildPythonPackage rec { changelog = "https://github.com/pytorch/torchsnapshot/releases/tag/${version}"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ GaetanLepage ]; + badPlatforms = [ + # test suite gets stuck and eventually times out with: "torch.distributed.DistNetworkError: The client socket has timed out after" + lib.systems.inspect.patterns.isDarwin + ]; }; }