2019-02-11 16:00:45 +00:00
|
|
|
{ stdenv, lib, fetchPypi, python, buildPythonPackage, gfortran, pytest, blas, writeTextFile }:
|
2016-02-04 20:30:39 +00:00
|
|
|
|
2018-10-18 20:00:48 +01:00
|
|
|
let
|
|
|
|
blasImplementation = lib.nameFromURL blas.name "-";
|
|
|
|
cfg = writeTextFile {
|
|
|
|
name = "site.cfg";
|
|
|
|
text = (lib.generators.toINI {} {
|
|
|
|
"${blasImplementation}" = {
|
|
|
|
include_dirs = "${blas}/include";
|
|
|
|
library_dirs = "${blas}/lib";
|
|
|
|
} // lib.optionalAttrs (blasImplementation == "mkl") {
|
|
|
|
mkl_libs = "mkl_rt";
|
|
|
|
lapack_libs = "";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
};
|
|
|
|
in buildPythonPackage rec {
|
2017-05-16 08:22:07 +01:00
|
|
|
pname = "numpy";
|
2019-04-24 17:42:49 +01:00
|
|
|
version = "1.16.3";
|
2016-02-04 20:30:39 +00:00
|
|
|
|
2017-09-28 09:50:50 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2019-04-24 17:42:49 +01:00
|
|
|
sha256 = "78a6f89da87eeb48014ec652a65c4ffde370c036d780a995edaeb121d3625621";
|
2017-05-16 08:22:07 +01:00
|
|
|
};
|
2016-02-04 20:30:39 +00:00
|
|
|
|
2018-09-25 19:03:30 +01:00
|
|
|
nativeBuildInputs = [ gfortran pytest ];
|
|
|
|
buildInputs = [ blas ];
|
2016-02-04 20:30:39 +00:00
|
|
|
|
2019-04-18 03:57:20 +01:00
|
|
|
patches = lib.optionals python.hasDistutilsCxxPatch [
|
2018-04-26 22:54:25 +01:00
|
|
|
# We patch cpython/distutils to fix https://bugs.python.org/issue1222585
|
|
|
|
# Patching of numpy.distutils is needed to prevent it from undoing the
|
|
|
|
# patch to distutils.
|
2016-10-15 22:51:09 +01:00
|
|
|
./numpy-distutils-C++.patch
|
|
|
|
];
|
|
|
|
|
2016-02-04 20:30:39 +00:00
|
|
|
preConfigure = ''
|
|
|
|
sed -i 's/-faltivec//' numpy/distutils/system_info.py
|
2017-07-30 09:19:02 +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 ${cfg} site.cfg
|
2016-02-04 20:30:39 +00:00
|
|
|
'';
|
|
|
|
|
2017-07-30 09:19:02 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-02-04 20:30:39 +00:00
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
pushd dist
|
|
|
|
${python.interpreter} -c 'import numpy; numpy.test("fast", verbose=10)'
|
|
|
|
popd
|
|
|
|
runHook postCheck
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
blas = blas;
|
2018-10-18 20:00:48 +01:00
|
|
|
inherit blasImplementation cfg;
|
2016-02-04 20:30:39 +00:00
|
|
|
};
|
|
|
|
|
2016-12-24 11:06:28 +00:00
|
|
|
# Disable two tests
|
|
|
|
# - test_f2py: f2py isn't yet on path.
|
|
|
|
# - test_large_file_support: takes a long time and can cause the machine to run out of disk space
|
|
|
|
NOSE_EXCLUDE="test_f2py,test_large_file_support";
|
2016-02-04 20:30:39 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Scientific tools for Python";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://numpy.scipy.org/;
|
2016-02-04 20:30:39 +00:00
|
|
|
maintainers = with lib.maintainers; [ fridh ];
|
2017-05-16 08:22:07 +01:00
|
|
|
};
|
|
|
|
}
|