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 <ihar.hrachyshka@gmail.com>
This commit is contained in:
Ihar Hrachyshka
2025-04-02 09:24:33 -04:00
parent 7dab91f9e3
commit 15082e8f73
@@ -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
];
};
}