nixpkgs/pkgs/development/python-modules/numexpr/default.nix

44 lines
877 B
Nix
Raw Normal View History

2017-12-29 17:56:37 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, python
, numpy
}:
buildPythonPackage rec {
pname = "numexpr";
version = "2.7.1";
2017-12-29 17:56:37 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "1c82z0zx0542j9df6ckjz6pn1g13b21hbza4hghcw6vyhbckklmh";
2017-12-29 17:56:37 +00:00
};
# Remove existing site.cfg, use the one we built for numpy.
preBuild = ''
ln -s ${numpy.cfg} site.cfg
'';
2017-12-29 17:56:37 +00:00
propagatedBuildInputs = [ numpy ];
# Run the test suite.
# It requires the build path to be in the python search path.
checkPhase = ''
2018-08-25 17:41:12 +01:00
pushd $out
2017-12-29 17:56:37 +00:00
${python}/bin/${python.executable} <<EOF
import sys
import numexpr
r = numexpr.test()
if not r.wasSuccessful():
sys.exit(1)
EOF
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;
};
}