2016-11-14 11:20:13 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, python
|
|
|
|
, buildPythonPackage
|
|
|
|
, isPy27
|
|
|
|
, isPy33
|
|
|
|
, isPy3k
|
|
|
|
, numpy
|
|
|
|
, llvmlite
|
|
|
|
, argparse
|
|
|
|
, funcsigs
|
|
|
|
, singledispatch
|
|
|
|
, libcxx
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-10-25 18:04:35 +00:00
|
|
|
version = "0.35.0";
|
2017-05-27 09:25:35 +00:00
|
|
|
pname = "numba";
|
|
|
|
name = "${pname}-${version}";
|
2016-11-14 11:20:13 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://pypi/n/numba/${name}.tar.gz";
|
2017-10-25 18:04:35 +00:00
|
|
|
sha256 = "11564937757605bee590c5758c73cfe9fd6d569726b56d970316a6228971ecc3";
|
2016-11-14 11:20:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
|
|
|
|
|
|
|
|
propagatedBuildInputs = [numpy llvmlite argparse] ++ stdenv.lib.optional (!isPy3k) funcsigs ++ stdenv.lib.optional (isPy27 || isPy33) singledispatch;
|
|
|
|
|
|
|
|
# Copy test script into $out and run the test suite.
|
|
|
|
checkPhase = ''
|
2017-02-13 10:00:12 +00:00
|
|
|
python -m numba.runtests
|
2016-11-14 11:20:13 +00:00
|
|
|
'';
|
|
|
|
# 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 ];
|
|
|
|
};
|
2017-02-13 10:00:12 +00:00
|
|
|
}
|