42 lines
982 B
Nix
42 lines
982 B
Nix
{ stdenv
|
|
, fetchPypi
|
|
, python
|
|
, buildPythonPackage
|
|
, isPy27
|
|
, isPy33
|
|
, isPy3k
|
|
, numpy
|
|
, llvmlite
|
|
, funcsigs
|
|
, singledispatch
|
|
, libcxx
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.43.1";
|
|
pname = "numba";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "e7789d473f332a17e40166d2960826d821edd75d148b4ed340a893a334b46fae";
|
|
};
|
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
|
|
|
|
propagatedBuildInputs = [numpy llvmlite] ++ stdenv.lib.optional (!isPy3k) funcsigs ++ stdenv.lib.optional (isPy27 || isPy33) singledispatch;
|
|
|
|
# Copy test script into $out and run the test suite.
|
|
checkPhase = ''
|
|
${python.interpreter} -m numba.runtests
|
|
'';
|
|
# ImportError: cannot import name '_typeconv'
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
homepage = http://numba.pydata.org/;
|
|
license = stdenv.lib.licenses.bsd2;
|
|
description = "Compiling Python code using LLVM";
|
|
maintainers = with stdenv.lib.maintainers; [ fridh ];
|
|
};
|
|
}
|