From 3dbc7c385c64c6854658d81fa38ee540d36f6c19 Mon Sep 17 00:00:00 2001 From: natsukium Date: Sun, 8 Dec 2024 17:17:13 +0900 Subject: [PATCH] python312Packages.jaxlib: use jaxlib-bin by default Thanks to bazel, it is difficult to source build with our current resources. --- pkgs/top-level/python-packages.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1056a924484e..09b548c199a2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6572,8 +6572,7 @@ self: super: with self; { IOKit = pkgs.darwin.apple_sdk_11_0.IOKit; }; - # Use the -bin on macOS since the source build doesn't support it (see #323154) - jaxlib = if jaxlib-build.meta.unsupported then jaxlib-bin else jaxlib-build; + jaxlib = jaxlib-bin; jaxlibWithCuda = self.jaxlib.override { cudaSupport = true;