From d7fe3f7d7f590ebeca305830c4f62258612a7a83 Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Wed, 2 Apr 2025 10:23:50 -0400 Subject: [PATCH] python312Packages.fairseq: mark as broken It fails because it uses np.compat that is not shipped with numpy2. Upstream runs on python3.9 and is generally mostly dead. If it ever changes and they fix compatibility with numpy2, we may revisit this. Signed-off-by: Ihar Hrachyshka --- pkgs/development/python-modules/fairseq/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/fairseq/default.nix b/pkgs/development/python-modules/fairseq/default.nix index d68c8c2ebbc3..aa2932bbf91f 100644 --- a/pkgs/development/python-modules/fairseq/default.nix +++ b/pkgs/development/python-modules/fairseq/default.nix @@ -120,5 +120,6 @@ buildPythonPackage rec { platforms = platforms.linux; hydraPlatforms = [ ]; maintainers = with maintainers; [ happysalada ]; + broken = true; # requires numpy1 which is incompatible with sacrebleu depending on numpy2 }; }