2021-07-28 23:49:42 +02:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchPypi
|
|
|
|
, python
|
|
|
|
, buildPythonPackage
|
2021-08-26 21:32:44 +02:00
|
|
|
, cython
|
2021-07-28 23:49:42 +02:00
|
|
|
, gfortran
|
2021-08-26 21:32:44 +02:00
|
|
|
, pythran
|
2021-07-28 23:49:42 +02:00
|
|
|
, nose
|
|
|
|
, pytest
|
|
|
|
, pytest-xdist
|
|
|
|
, numpy
|
|
|
|
, pybind11
|
|
|
|
}:
|
2019-12-19 19:31:15 +01:00
|
|
|
|
2021-06-21 17:54:13 +02:00
|
|
|
buildPythonPackage rec {
|
2017-05-16 09:22:46 +02:00
|
|
|
pname = "scipy";
|
2021-11-25 14:47:13 -08:00
|
|
|
version = "1.7.3";
|
2016-02-04 21:30:39 +01:00
|
|
|
|
2018-04-04 19:51:03 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-11-25 14:47:13 -08:00
|
|
|
sha256 = "ab5875facfdef77e0a47d5fd39ea178b58e60e454a4c85aa1e52fcb80db7babf";
|
2017-05-16 09:22:46 +02:00
|
|
|
};
|
2016-02-04 21:30:39 +01:00
|
|
|
|
2021-08-26 21:32:44 +02:00
|
|
|
nativeBuildInputs = [ cython gfortran pythran ];
|
|
|
|
|
2021-06-21 17:54:13 +02:00
|
|
|
buildInputs = [ numpy.blas pybind11 ];
|
2021-08-26 21:32:44 +02:00
|
|
|
|
2017-05-16 09:22:46 +02:00
|
|
|
propagatedBuildInputs = [ numpy ];
|
2016-02-04 21:30:39 +01:00
|
|
|
|
2021-08-26 21:32:44 +02:00
|
|
|
checkInputs = [ nose pytest pytest-xdist ];
|
|
|
|
|
2016-07-28 11:03:27 +02:00
|
|
|
# Remove tests because of broken wrapper
|
|
|
|
prePatch = ''
|
|
|
|
rm scipy/linalg/tests/test_lapack.py
|
|
|
|
'';
|
|
|
|
|
2019-12-19 19:31:15 +01:00
|
|
|
doCheck = true;
|
2018-08-30 18:58:10 +02:00
|
|
|
|
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 = ''
|
2018-10-18 15:00:48 -04:00
|
|
|
ln -s ${numpy.cfg} site.cfg
|
2016-02-04 21:30:39 +01:00
|
|
|
'';
|
|
|
|
|
2021-07-28 23:49:42 +02:00
|
|
|
# disable stackprotector on aarch64-darwin for now
|
|
|
|
#
|
|
|
|
# build error:
|
|
|
|
#
|
|
|
|
# /private/tmp/nix-build-python3.9-scipy-1.6.3.drv-0/ccDEsw5U.s:109:15: error: index must be an integer in range [-256, 255].
|
|
|
|
#
|
|
|
|
# ldr x0, [x0, ___stack_chk_guard];momd
|
|
|
|
#
|
|
|
|
hardeningDisable = lib.optionals (stdenv.isAarch64 && stdenv.isDarwin) [ "stackprotector" ];
|
|
|
|
|
2016-02-04 21:30:39 +01:00
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
pushd dist
|
2021-06-21 17:12:32 +02:00
|
|
|
${python.interpreter} -c "import scipy; scipy.test('fast', verbose=10, parallel=$NIX_BUILD_CORES)"
|
2016-02-04 21:30:39 +01:00
|
|
|
popd
|
|
|
|
runHook postCheck
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
blas = numpy.blas;
|
|
|
|
};
|
|
|
|
|
|
|
|
setupPyBuildFlags = [ "--fcompiler='gnu95'" ];
|
|
|
|
|
2020-04-22 12:38:28 -05:00
|
|
|
SCIPY_USE_G77_ABI_WRAPPER = 1;
|
|
|
|
|
2021-02-17 22:55:22 -05:00
|
|
|
meta = with lib; {
|
|
|
|
description = "SciPy (pronounced 'Sigh Pie') is open-source software for mathematics, science, and engineering";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://www.scipy.org/";
|
2021-02-17 22:55:22 -05:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.fridh ];
|
2017-05-16 09:22:46 +02:00
|
|
|
};
|
|
|
|
}
|