Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions nix/python-overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,13 @@ lib.optionalAttrs useCuda {
});
}

# Disable filterpy tests on Darwin (test_hinfinity triggers BPT trap in pytest)
// lib.optionalAttrs (prev ? filterpy) {
filterpy = prev.filterpy.overridePythonAttrs (old: {
doCheck = if pkgs.stdenv.isDarwin then false else (old.doCheck or true);
});
}

# Fix bitsandbytes build - needs ninja for wheel building phase
// lib.optionalAttrs (prev ? bitsandbytes) {
bitsandbytes = prev.bitsandbytes.overridePythonAttrs (old: {
Expand Down
Loading