mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
Merge pull request #6381 from olavks/numpyfix
Numpy: remove slow building and little used math library for more commonly used openblas
This commit is contained in:
commit
3dbde25855
|
@ -6657,7 +6657,7 @@ let
|
|||
'';
|
||||
|
||||
preBuild = ''
|
||||
export BLAS=${pkgs.blas} LAPACK=${pkgs.liblapack}
|
||||
export BLAS=${pkgs.openblas} LAPACK=${pkgs.openblas}
|
||||
'';
|
||||
|
||||
setupPyBuildFlags = ["--fcompiler='gnu95'"];
|
||||
|
@ -6666,7 +6666,7 @@ let
|
|||
doCheck = false;
|
||||
|
||||
buildInputs = with self; [ pkgs.gfortran ];
|
||||
propagatedBuildInputs = with self; [ pkgs.liblapack pkgs.blas ];
|
||||
propagatedBuildInputs = with self; [ pkgs.openblas ];
|
||||
|
||||
meta = {
|
||||
description = "Scientific tools for Python";
|
||||
|
|
Loading…
Reference in a new issue