From c2a92301eef731b6253d4bd5510f4c90e18fca1e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 28 Dec 2022 22:13:04 +0100 Subject: [PATCH] python310Packages.distrax: mark as broken --- pkgs/development/python-modules/distrax/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/distrax/default.nix b/pkgs/development/python-modules/distrax/default.nix index be277f97ba5e..6ca29f81c622 100644 --- a/pkgs/development/python-modules/distrax/default.nix +++ b/pkgs/development/python-modules/distrax/default.nix @@ -6,7 +6,8 @@ , chex , dm-haiku , pytestCheckHook -, jaxlib }: +, jaxlib +}: buildPythonPackage rec { pname = "distrax"; @@ -53,5 +54,7 @@ buildPythonPackage rec { homepage = "https://github.com/deepmind/distrax"; license = licenses.asl20; maintainers = with maintainers; [ onny ]; + # Broken on all platforms (starting 2022-07-27) + broken = true; }; }