2018-08-30 18:58:10 +02:00
|
|
|
{lib, fetchPypi, python, buildPythonPackage, gfortran, nose, pytest, numpy, fetchpatch}:
|
2016-02-04 21:30:39 +01:00
|
|
|
|
2017-05-16 09:22:46 +02:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "scipy";
|
2018-06-12 18:47:06 +02:00
|
|
|
version = "1.1.0";
|
2016-02-04 21:30:39 +01:00
|
|
|
|
2018-04-04 19:51:03 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-12 18:47:06 +02:00
|
|
|
sha256 = "878352408424dffaa695ffedf2f9f92844e116686923ed9aa8626fc30d32cfd1";
|
2017-05-16 09:22:46 +02:00
|
|
|
};
|
2016-02-04 21:30:39 +01:00
|
|
|
|
2017-10-25 20:04:35 +02:00
|
|
|
checkInputs = [ nose pytest ];
|
2018-09-25 20:08:21 +02:00
|
|
|
nativeBuildInputs = [ gfortran ];
|
|
|
|
buildInputs = [ numpy.blas ];
|
2017-05-16 09:22:46 +02:00
|
|
|
propagatedBuildInputs = [ numpy ];
|
2016-02-04 21:30:39 +01:00
|
|
|
|
2016-07-28 11:03:27 +02:00
|
|
|
# Remove tests because of broken wrapper
|
|
|
|
prePatch = ''
|
|
|
|
rm scipy/linalg/tests/test_lapack.py
|
|
|
|
'';
|
|
|
|
|
2018-08-30 18:58:10 +02:00
|
|
|
# INTERNALERROR, solved with https://github.com/scipy/scipy/pull/8871
|
|
|
|
# however, it does not apply cleanly.
|
|
|
|
doCheck = false;
|
|
|
|
|
2016-02-04 21:30:39 +01:00
|
|
|
preConfigure = ''
|
|
|
|
sed -i '0,/from numpy.distutils.core/s//import setuptools;from numpy.distutils.core/' setup.py
|
2017-07-30 10:19:15 +02:00
|
|
|
export NPY_NUM_BUILD_JOBS=$NIX_BUILD_CORES
|
2016-02-04 21:30:39 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
echo "Creating site.cfg file..."
|
|
|
|
cat << EOF > site.cfg
|
|
|
|
[openblas]
|
2017-05-16 09:22:46 +02:00
|
|
|
include_dirs = ${numpy.blas}/include
|
|
|
|
library_dirs = ${numpy.blas}/lib
|
2016-02-04 21:30:39 +01:00
|
|
|
EOF
|
|
|
|
'';
|
|
|
|
|
2017-07-30 10:19:15 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-02-04 21:30:39 +01:00
|
|
|
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 22:12:57 +02:00
|
|
|
homepage = https://www.scipy.org/;
|
2016-02-04 21:30:39 +01:00
|
|
|
maintainers = with lib.maintainers; [ fridh ];
|
2017-05-16 09:22:46 +02:00
|
|
|
};
|
|
|
|
}
|