2020-01-03 11:52:42 +00:00
|
|
|
{ lib
|
|
|
|
, fetchPypi
|
|
|
|
, python
|
|
|
|
, buildPythonPackage
|
|
|
|
, gfortran
|
2020-08-09 07:35:41 +01:00
|
|
|
, hypothesis
|
2021-02-01 05:29:05 +00:00
|
|
|
, pytest
|
2020-01-03 11:52:42 +00:00
|
|
|
, blas
|
2020-03-31 15:47:18 +01:00
|
|
|
, lapack
|
2020-01-03 11:52:42 +00:00
|
|
|
, writeTextFile
|
|
|
|
, isPyPy
|
|
|
|
, cython
|
|
|
|
, setuptoolsBuildHook
|
2021-02-01 05:29:05 +00:00
|
|
|
, pythonOlder
|
|
|
|
}:
|
2016-02-04 20:30:39 +00:00
|
|
|
|
2020-04-20 21:50:55 +01:00
|
|
|
assert (!blas.isILP64) && (!lapack.isILP64);
|
2020-03-31 15:47:18 +01:00
|
|
|
|
2018-10-18 20:00:48 +01:00
|
|
|
let
|
|
|
|
cfg = writeTextFile {
|
|
|
|
name = "site.cfg";
|
|
|
|
text = (lib.generators.toINI {} {
|
2020-03-31 15:47:18 +01:00
|
|
|
${blas.implementation} = {
|
2020-04-20 21:31:59 +01:00
|
|
|
include_dirs = "${lib.getDev blas}/include:${lib.getDev lapack}/include";
|
2020-03-31 15:47:18 +01:00
|
|
|
library_dirs = "${blas}/lib:${lapack}/lib";
|
2020-08-27 03:14:53 +01:00
|
|
|
runtime_library_dirs = "${blas}/lib:${lapack}/lib";
|
2020-04-20 19:53:29 +01:00
|
|
|
libraries = "lapack,lapacke,blas,cblas";
|
2018-10-18 20:00:48 +01:00
|
|
|
};
|
2020-05-07 22:26:55 +01:00
|
|
|
lapack = {
|
|
|
|
include_dirs = "${lib.getDev lapack}/include";
|
|
|
|
library_dirs = "${lapack}/lib";
|
2020-08-27 03:14:53 +01:00
|
|
|
runtime_library_dirs = "${lapack}/lib";
|
2020-05-07 22:26:55 +01:00
|
|
|
};
|
|
|
|
blas = {
|
|
|
|
include_dirs = "${lib.getDev blas}/include";
|
|
|
|
library_dirs = "${blas}/lib";
|
2020-08-27 03:14:53 +01:00
|
|
|
runtime_library_dirs = "${blas}/lib";
|
2020-05-07 22:26:55 +01:00
|
|
|
};
|
2018-10-18 20:00:48 +01:00
|
|
|
});
|
|
|
|
};
|
|
|
|
in buildPythonPackage rec {
|
2017-05-16 08:22:07 +01:00
|
|
|
pname = "numpy";
|
2021-08-26 20:32:40 +01:00
|
|
|
version = "1.21.2";
|
2020-01-03 11:52:42 +00:00
|
|
|
format = "pyproject.toml";
|
2021-02-01 05:29:05 +00:00
|
|
|
disabled = pythonOlder "3.7";
|
2016-02-04 20:30:39 +00:00
|
|
|
|
2017-09-28 09:50:50 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2021-08-26 20:32:40 +01:00
|
|
|
sha256 = "423216d8afc5923b15df86037c6053bf030d15cc9e3224206ef868c2d63dd6dc";
|
2017-05-16 08:22:07 +01:00
|
|
|
};
|
2016-02-04 20:30:39 +00:00
|
|
|
|
2021-02-01 05:29:05 +00: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
|
|
|
|
];
|
|
|
|
|
2021-02-01 05:29:05 +00:00
|
|
|
nativeBuildInputs = [ gfortran cython setuptoolsBuildHook ];
|
|
|
|
buildInputs = [ blas lapack ];
|
|
|
|
|
2020-11-17 16:31:06 +00:00
|
|
|
# we default openblas to build with 64 threads
|
|
|
|
# if a machine has more than 64 threads, it will segfault
|
|
|
|
# see https://github.com/xianyi/OpenBLAS/issues/2993
|
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
|
2020-11-17 16:31:06 +00:00
|
|
|
export OMP_NUM_THREADS=$((NIX_BUILD_CORES > 64 ? 64 : 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
|
|
|
'';
|
|
|
|
|
2021-08-06 20:16:39 +01:00
|
|
|
# Workaround flakey compiler feature detection
|
|
|
|
# https://github.com/numpy/numpy/issues/19624
|
|
|
|
hardeningDisable = [ "strictoverflow" ];
|
|
|
|
|
2017-07-30 09:19:02 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2020-11-29 22:12:41 +00:00
|
|
|
checkInputs = [
|
2021-02-01 05:29:05 +00:00
|
|
|
pytest
|
2020-11-29 22:12:41 +00:00
|
|
|
hypothesis
|
|
|
|
];
|
2020-08-09 07:35:41 +01:00
|
|
|
|
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 = {
|
2020-03-31 15:47:18 +01:00
|
|
|
# just for backwards compatibility
|
|
|
|
blas = blas.provider;
|
|
|
|
blasImplementation = blas.implementation;
|
|
|
|
inherit 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";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://numpy.org/";
|
2020-10-22 14:24:51 +01:00
|
|
|
license = lib.licenses.bsd3;
|
2016-02-04 20:30:39 +00:00
|
|
|
maintainers = with lib.maintainers; [ fridh ];
|
2017-05-16 08:22:07 +01:00
|
|
|
};
|
|
|
|
}
|