From 335da0b77b3055f198740164a39b1ec234b79e1e Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Sat, 18 Jan 2025 18:52:19 -0500 Subject: [PATCH] python3Packages.wandb: unmark darwin as broken It builds fine now with the new sdk stdenv. Tests disabled for platform fail for both cpu types, hence removing cpu condition. --- pkgs/development/python-modules/wandb/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/wandb/default.nix b/pkgs/development/python-modules/wandb/default.nix index e5968f51168b..1a66aab57537 100644 --- a/pkgs/development/python-modules/wandb/default.nix +++ b/pkgs/development/python-modules/wandb/default.nix @@ -105,9 +105,6 @@ let meta = { mainProgram = "gpu_stats"; - # ld: library not found for -lIOReport - # TODO: succeeds on https://github.com/NixOS/nixpkgs/pull/348827, so try again once it lands on master - broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; }; }; @@ -302,7 +299,7 @@ buildPythonPackage rec { "test_disabled_context_manager" "test_mode_disabled" ] - ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [ + ++ lib.optionals stdenv.hostPlatform.isDarwin [ # AssertionError: assert not copy2_mock.called "test_copy_or_overwrite_changed_no_copy"