2020-01-03 11:52:42 +00:00
|
|
|
{ lib
|
|
|
|
, fetchPypi
|
|
|
|
, python
|
|
|
|
, buildPythonPackage
|
|
|
|
, gfortran
|
|
|
|
, pytest
|
|
|
|
, blas
|
|
|
|
, writeTextFile
|
|
|
|
, isPyPy
|
|
|
|
, cython
|
|
|
|
, setuptoolsBuildHook
|
|
|
|
}:
|
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 {} {
|
2019-08-13 22:52:01 +01:00
|
|
|
${blasImplementation} = {
|
2018-10-18 20:00:48 +01:00
|
|
|
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";
|
2020-01-03 10:10:09 +00:00
|
|
|
version = "1.18.0";
|
2020-01-03 11:52:42 +00:00
|
|
|
format = "pyproject.toml";
|
2016-02-04 20:30:39 +00:00
|
|
|
|
2017-09-28 09:50:50 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2020-01-03 10:10:09 +00:00
|
|
|
sha256 = "a9d72d9abaf65628f0f31bbb573b7d9304e43b1e6bbae43149c17737a42764c4";
|
2017-05-16 08:22:07 +01:00
|
|
|
};
|
2016-02-04 20:30:39 +00:00
|
|
|
|
2020-01-03 11:52:42 +00:00
|
|
|
nativeBuildInputs = [ gfortran pytest cython setuptoolsBuildHook ];
|
2018-09-25 19:03:30 +01:00
|
|
|
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";
|
2019-12-07 01:17:29 +00:00
|
|
|
homepage = https://numpy.org/;
|
2016-02-04 20:30:39 +00:00
|
|
|
maintainers = with lib.maintainers; [ fridh ];
|
2017-05-16 08:22:07 +01:00
|
|
|
};
|
|
|
|
}
|