2019-01-10 19:09:27 +00:00
|
|
|
{ lib, fetchPypi, python, buildPythonPackage, gfortran, pytest, blas, writeTextFile, isPyPy }:
|
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-05-30 07:46:04 +01:00
|
|
|
version = "1.16.4";
|
2016-02-04 20:30:39 +00:00
|
|
|
|
2017-09-28 09:50:50 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2019-05-30 07:46:04 +01:00
|
|
|
sha256 = "7242be12a58fec245ee9734e625964b97cf7e3f2f7d016603f9e56660ce479c7";
|
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;
|
|
|
|
|
2019-01-10 19:09:27 +00:00
|
|
|
doCheck = !isPyPy; # numpy 1.16+ hits a bug in pypy's ctypes, using either numpy or pypy HEAD fixes this (https://github.com/numpy/numpy/issues/13807)
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2019-07-02 22:36:09 +01:00
|
|
|
# Disable test
|
2016-12-24 11:06:28 +00:00
|
|
|
# - test_large_file_support: takes a long time and can cause the machine to run out of disk space
|
2019-07-02 22:36:09 +01:00
|
|
|
NOSE_EXCLUDE="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
|
|
|
};
|
|
|
|
}
|