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 {
|
2017-05-16 08:22:46 +01:00
|
|
|
pname = "scipy";
|
2019-12-19 18:31:15 +00:00
|
|
|
version = "1.4.1";
|
2016-02-04 20:30:39 +00:00
|
|
|
|
2018-04-04 18:51:03 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-19 18:31:15 +00:00
|
|
|
sha256 = "dee1bbf3a6c8f73b6b218cb28eed8dd13347ea2f87d572ce19b289d6fd3fbc59";
|
2017-05-16 08:22:46 +01:00
|
|
|
};
|
2016-02-04 20:30:39 +00:00
|
|
|
|
2017-10-25 19:04:35 +01:00
|
|
|
checkInputs = [ nose pytest ];
|
2018-09-25 19:08:21 +01:00
|
|
|
nativeBuildInputs = [ gfortran ];
|
2019-12-19 18:31:15 +00:00
|
|
|
buildInputs = [ numpy.blas pybind ];
|
2017-05-16 08:22:46 +01:00
|
|
|
propagatedBuildInputs = [ numpy ];
|
2016-02-04 20:30:39 +00:00
|
|
|
|
2016-07-28 10:03:27 +01: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;
|
2018-08-30 17:58:10 +01:00
|
|
|
|
2016-02-04 20:30:39 +00:00
|
|
|
preConfigure = ''
|
|
|
|
sed -i '0,/from numpy.distutils.core/s//import setuptools;from numpy.distutils.core/' setup.py
|
2017-07-30 09:19:15 +01:00
|
|
|
export NPY_NUM_BUILD_JOBS=$NIX_BUILD_CORES
|
2016-02-04 20:30:39 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
preBuild = ''
|
2018-10-18 20:00:48 +01:00
|
|
|
ln -s ${numpy.cfg} site.cfg
|
2016-02-04 20:30:39 +00:00
|
|
|
'';
|
|
|
|
|
2017-07-30 09:19:15 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-02-04 20:30:39 +00: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'" ];
|
|
|
|
|
2020-04-22 18:38:28 +01:00
|
|
|
SCIPY_USE_G77_ABI_WRAPPER = 1;
|
|
|
|
|
2016-02-04 20:30:39 +00:00
|
|
|
meta = {
|
|
|
|
description = "SciPy (pronounced 'Sigh Pie') is open-source software for mathematics, science, and engineering. ";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.scipy.org/";
|
2016-02-04 20:30:39 +00:00
|
|
|
maintainers = with lib.maintainers; [ fridh ];
|
2017-05-16 08:22:46 +01:00
|
|
|
};
|
|
|
|
}
|