2016-11-14 11:20:13 +00:00
|
|
|
{ stdenv
|
2020-02-13 07:13:50 +00:00
|
|
|
, pythonOlder
|
2017-12-30 11:25:04 +00:00
|
|
|
, fetchPypi
|
2016-11-14 11:20:13 +00:00
|
|
|
, python
|
|
|
|
, buildPythonPackage
|
|
|
|
, isPy27
|
|
|
|
, isPy3k
|
|
|
|
, numpy
|
|
|
|
, llvmlite
|
|
|
|
, funcsigs
|
|
|
|
, singledispatch
|
|
|
|
, libcxx
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2020-07-31 09:51:45 +01:00
|
|
|
version = "0.50.1";
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "numba";
|
2020-02-13 07:13:50 +00:00
|
|
|
# uses f-strings
|
|
|
|
disabled = pythonOlder "3.6";
|
2016-11-14 11:20:13 +00:00
|
|
|
|
2017-12-30 11:25:04 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-07-31 09:51:45 +01:00
|
|
|
sha256 = "89e81b51b880f9b18c82b7095beaccc6856fcf84ba29c4f0ced42e4e5748a3a7";
|
2016-11-14 11:20:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
|
|
|
|
|
2020-05-04 19:32:01 +01:00
|
|
|
propagatedBuildInputs = [numpy llvmlite]
|
|
|
|
++ stdenv.lib.optionals isPy27 [ funcsigs singledispatch];
|
2016-11-14 11:20:13 +00:00
|
|
|
|
|
|
|
# Copy test script into $out and run the test suite.
|
|
|
|
checkPhase = ''
|
2017-12-30 11:25:04 +00:00
|
|
|
${python.interpreter} -m numba.runtests
|
2016-11-14 11:20:13 +00:00
|
|
|
'';
|
|
|
|
# ImportError: cannot import name '_typeconv'
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://numba.pydata.org/";
|
2016-11-14 11:20:13 +00:00
|
|
|
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
|
|
|
}
|