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

57 lines
1.4 KiB
Nix
Raw Normal View History

{lib, fetchPypi, python, buildPythonPackage, gfortran, nose, pytest, numpy, fetchpatch}:
buildPythonPackage rec {
pname = "scipy";
2018-06-12 16:47:06 +00:00
version = "1.1.0";
2018-04-04 17:51:03 +00:00
src = fetchPypi {
inherit pname version;
2018-06-12 16:47:06 +00:00
sha256 = "878352408424dffaa695ffedf2f9f92844e116686923ed9aa8626fc30d32cfd1";
};
2017-10-25 18:04:35 +00:00
checkInputs = [ nose pytest ];
nativeBuildInputs = [ gfortran ];
buildInputs = [ numpy.blas ];
propagatedBuildInputs = [ numpy ];
2016-07-28 09:03:27 +00:00
# Remove tests because of broken wrapper
prePatch = ''
rm scipy/linalg/tests/test_lapack.py
'';
# INTERNALERROR, solved with https://github.com/scipy/scipy/pull/8871
# however, it does not apply cleanly.
doCheck = false;
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'" ];
meta = {
description = "SciPy (pronounced 'Sigh Pie') is open-source software for mathematics, science, and engineering. ";
2018-06-27 20:12:57 +00:00
homepage = https://www.scipy.org/;
maintainers = with lib.maintainers; [ fridh ];
};
}