Skip to content

Commit 7b350e0

Browse files
committed
nix CI: dont run scipy tests
1 parent f236554 commit 7b350e0

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

flake.nix

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,16 @@
3232
postPatch = "";
3333
};
3434
};
35-
eigen_5 = final: _prev: {
35+
eigen_5 = final: prev: {
3636
eigen = final.eigen_5;
37+
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
38+
(python-final: python-prev: {
39+
scipy = python-prev.scipy.overrideAttrs {
40+
# broken on linux arm
41+
doInstallCheck = false;
42+
};
43+
})
44+
];
3745
};
3846
};
3947
perSystem =

0 commit comments

Comments
 (0)