2017-12-29 17:56:37 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, python
|
|
|
|
, numpy
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "numexpr";
|
2021-03-24 09:28:19 +00:00
|
|
|
version = "2.7.3";
|
2017-12-29 17:56:37 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-24 09:28:19 +00:00
|
|
|
sha256 = "43616529f9b7d1afc83386f943dc66c4da5e052f00217ba7e3ad8dd1b5f3a825";
|
2017-12-29 17:56:37 +00:00
|
|
|
};
|
|
|
|
|
2018-10-18 20:00:48 +01:00
|
|
|
# Remove existing site.cfg, use the one we built for numpy.
|
|
|
|
preBuild = ''
|
|
|
|
ln -s ${numpy.cfg} site.cfg
|
|
|
|
'';
|
|
|
|
|
2020-11-19 21:04:46 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
numpy
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
numpy
|
|
|
|
];
|
2017-12-29 17:56:37 +00:00
|
|
|
|
|
|
|
checkPhase = ''
|
2020-07-16 03:11:43 +01:00
|
|
|
runtest="$(pwd)/numexpr/tests/test_numexpr.py"
|
|
|
|
pushd "$out"
|
2020-11-19 21:04:46 +00:00
|
|
|
${python.interpreter} "$runtest"
|
2018-08-25 17:41:12 +01:00
|
|
|
popd
|
2017-12-29 17:56:37 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Fast numerical array expression evaluator for NumPy";
|
|
|
|
homepage = "https://github.com/pydata/numexpr";
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
2018-10-23 22:33:49 +01:00
|
|
|
}
|