From 592ecaaa4efde6d1e30b81db130bc5713b111180 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 12 Jan 2025 19:28:26 +0100 Subject: [PATCH] python312Packages.distrax: mark as broken on darwin --- pkgs/development/python-modules/distrax/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/distrax/default.nix b/pkgs/development/python-modules/distrax/default.nix index 6cae7b75ee6b..ab3ffdad7558 100644 --- a/pkgs/development/python-modules/distrax/default.nix +++ b/pkgs/development/python-modules/distrax/default.nix @@ -99,5 +99,9 @@ buildPythonPackage rec { changelog = "https://github.com/google-deepmind/distrax/releases/tag/v${version}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ onny ]; + badPlatforms = [ + # SystemError: nanobind::detail::nb_func_error_except(): exception could not be translated! + lib.systems.inspect.patterns.isDarwin + ]; }; }