python3Packages.skorch: disable package on darwin (#415117)

This commit is contained in:
Gaétan Lepage 2025-06-09 09:59:00 +02:00 committed by GitHub
commit 7501049bfe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -96,5 +96,10 @@ buildPythonPackage rec {
changelog = "https://github.com/skorch-dev/skorch/blob/master/CHANGES.md";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ bcdarwin ];
badPlatforms = [
# Most tests fail with:
# Fatal Python error: Segmentation fault
lib.systems.inspect.patterns.isDarwin
];
};
}