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

56 lines
1.4 KiB
Nix
Raw Normal View History

{lib, fetchPypi, python, buildPythonPackage, gfortran, nose, pytest, pytest-xdist, numpy, pybind11 }:
2019-12-19 18:31:15 +00:00
buildPythonPackage rec {
pname = "scipy";
2021-06-18 21:47:37 +00:00
version = "1.6.3";
2018-04-04 17:51:03 +00:00
src = fetchPypi {
inherit pname version;
2021-06-18 21:47:37 +00:00
sha256 = "a75b014d3294fce26852a9d04ea27b5671d86736beb34acdfc05859246260707";
};
checkInputs = [ nose pytest pytest-xdist ];
nativeBuildInputs = [ gfortran ];
buildInputs = [ numpy.blas pybind11 ];
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
'';
checkPhase = ''
runHook preCheck
pushd dist
${python.interpreter} -c "import scipy; scipy.test('fast', verbose=10, parallel=$NIX_BUILD_CORES)"
popd
runHook postCheck
'';
passthru = {
blas = numpy.blas;
};
setupPyBuildFlags = [ "--fcompiler='gnu95'" ];
SCIPY_USE_G77_ABI_WRAPPER = 1;
2021-02-18 03:55:22 +00:00
meta = with lib; {
description = "SciPy (pronounced 'Sigh Pie') is open-source software for mathematics, science, and engineering";
homepage = "https://www.scipy.org/";
2021-02-18 03:55:22 +00:00
license = licenses.bsd3;
maintainers = [ maintainers.fridh ];
};
}