nixpkgs/pkgs/development/python-modules/scipy/default.nix

64 lines
1.5 KiB
Nix
Raw Normal View History

2019-12-19 18:31:15 +00:00
{lib, fetchPypi, python, buildPythonPackage, gfortran, nose, pytest, numpy, pybind11}:
let
pybind = pybind11.overridePythonAttrs(oldAttrs: {
cmakeFlags = oldAttrs.cmakeFlags ++ [
"-DPYBIND11_TEST=off"
];
doCheck = false; # Circular test dependency
});
in buildPythonPackage rec {
pname = "scipy";
2020-07-31 08:51:46 +00:00
version = "1.5.2";
2018-04-04 17:51:03 +00:00
src = fetchPypi {
inherit pname version;
2020-07-31 08:51:46 +00:00
sha256 = "066c513d90eb3fd7567a9e150828d39111ebd88d3e924cdfc9f8ce19ab6f90c9";
};
2017-10-25 18:04:35 +00:00
checkInputs = [ nose pytest ];
nativeBuildInputs = [ gfortran ];
2019-12-19 18:31:15 +00:00
buildInputs = [ numpy.blas pybind ];
propagatedBuildInputs = [ numpy ];
2016-07-28 09:03:27 +00:00
# Remove tests because of broken wrapper
prePatch = ''
rm scipy/linalg/tests/test_lapack.py
'';
2019-12-19 18:31:15 +00:00
doCheck = true;
preConfigure = ''
sed -i '0,/from numpy.distutils.core/s//import setuptools;from numpy.distutils.core/' setup.py
export NPY_NUM_BUILD_JOBS=$NIX_BUILD_CORES
'';
preBuild = ''
ln -s ${numpy.cfg} site.cfg
'';
enableParallelBuilding = true;
checkPhase = ''
runHook preCheck
pushd dist
${python.interpreter} -c 'import scipy; scipy.test("fast", verbose=10)'
popd
runHook postCheck
'';
passthru = {
blas = numpy.blas;
};
setupPyBuildFlags = [ "--fcompiler='gnu95'" ];
SCIPY_USE_G77_ABI_WRAPPER = 1;
meta = {
description = "SciPy (pronounced 'Sigh Pie') is open-source software for mathematics, science, and engineering. ";
homepage = "https://www.scipy.org/";
maintainers = with lib.maintainers; [ fridh ];
};
}