2021-01-24 00:29:22 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2021-03-02 01:50:41 +00:00
|
|
|
, pythonAtLeast
|
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
|
|
|
|
, numpy
|
|
|
|
, llvmlite
|
2021-02-07 16:30:53 +00:00
|
|
|
, setuptools
|
2016-11-14 11:20:13 +00:00
|
|
|
, libcxx
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2021-02-27 16:58:34 +00:00
|
|
|
version = "0.52.0";
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "numba";
|
2021-03-02 01:50:41 +00:00
|
|
|
# uses f-strings, python 3.9 is not yet supported
|
|
|
|
disabled = pythonOlder "3.6" || pythonAtLeast "3.9";
|
2016-11-14 11:20:13 +00:00
|
|
|
|
2017-12-30 11:25:04 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-27 16:58:34 +00:00
|
|
|
sha256 = "44661c5bd85e3d3619be0a40eedee34e397e9ccb3d4c458b70e10bf95d1ce933";
|
2016-11-14 11:20:13 +00:00
|
|
|
};
|
|
|
|
|
2021-01-24 00:29:22 +00:00
|
|
|
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
|
2016-11-14 11:20:13 +00:00
|
|
|
|
2021-02-08 19:44:21 +00:00
|
|
|
propagatedBuildInputs = [ numpy llvmlite setuptools ];
|
|
|
|
pythonImportsCheck = [ "numba" ];
|
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;
|
|
|
|
|
2021-01-24 00:29:22 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://numba.pydata.org/";
|
2021-01-24 00:29:22 +00:00
|
|
|
license = licenses.bsd2;
|
2016-11-14 11:20:13 +00:00
|
|
|
description = "Compiling Python code using LLVM";
|
2021-01-24 00:29:22 +00:00
|
|
|
maintainers = with maintainers; [ fridh ];
|
2016-11-14 11:20:13 +00:00
|
|
|
};
|
2017-02-13 10:00:12 +00:00
|
|
|
}
|