From 5c4ede54b4917fb79fd35692f19a2543fec736f7 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 8 Jun 2025 14:42:08 +0200 Subject: [PATCH] python3Packages.skorch: disable package on darwin --- pkgs/development/python-modules/skorch/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/skorch/default.nix b/pkgs/development/python-modules/skorch/default.nix index 0cb024b3ce2f..1b88c9a8ed46 100644 --- a/pkgs/development/python-modules/skorch/default.nix +++ b/pkgs/development/python-modules/skorch/default.nix @@ -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 + ]; }; }