Skip to content

Commit 335da0b

Browse files
committed
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.
1 parent 9492129 commit 335da0b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pkgs/development/python-modules/wandb/default.nix

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,6 @@ let
105105

106106
meta = {
107107
mainProgram = "gpu_stats";
108-
# ld: library not found for -lIOReport
109-
# TODO: succeeds on https://github.com/NixOS/nixpkgs/pull/348827, so try again once it lands on master
110-
broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64;
111108
};
112109
};
113110

@@ -302,7 +299,7 @@ buildPythonPackage rec {
302299
"test_disabled_context_manager"
303300
"test_mode_disabled"
304301
]
305-
++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [
302+
++ lib.optionals stdenv.hostPlatform.isDarwin [
306303
# AssertionError: assert not copy2_mock.called
307304
"test_copy_or_overwrite_changed_no_copy"
308305

0 commit comments

Comments
 (0)