We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e79e113 commit a3b6f93Copy full SHA for a3b6f93
flake.nix
@@ -69,6 +69,15 @@
69
(finalPython: prevPython: {
70
kframework = k-framework.packages.${system}.pyk-python310;
71
pykwasm = wasm-semantics.packages.${system}.kwasm-pyk;
72
+ # override numpy on Darwin to avoid the missing dynamic library issue
73
+ numpy = if pkgs.stdenv.isDarwin
74
+ then
75
+ prevPython.numpy.override {
76
+ blas = null;
77
+ lapack = null;
78
+ }
79
+ else
80
+ prevPython.numpy;
81
});
82
groups = [ ];
83
checkGroups = [ ];
0 commit comments