From b5ad0ced93ad15fe54a7f4da76ed3ec94841caf7 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 17 Apr 2025 15:41:42 +0200 Subject: [PATCH] python312Packages.pygame: mark as broken on darwin --- pkgs/development/python-modules/pygame/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/pygame/default.nix b/pkgs/development/python-modules/pygame/default.nix index 8f15d3e3fca9..238ec93abffc 100644 --- a/pkgs/development/python-modules/pygame/default.nix +++ b/pkgs/development/python-modules/pygame/default.nix @@ -122,5 +122,9 @@ buildPythonPackage rec { license = lib.licenses.lgpl21Plus; maintainers = with lib.maintainers; [ emilytrau ]; platforms = lib.platforms.unix; + badPlatforms = [ + # Several tests segfault + lib.systems.inspect.patterns.isDarwin + ]; }; }