2021-01-24 01:29:22 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2021-03-01 20:50:41 -05:00
|
|
|
, pythonAtLeast
|
2020-02-12 23:13:50 -08:00
|
|
|
, pythonOlder
|
2017-12-30 12:25:04 +01:00
|
|
|
, fetchPypi
|
2016-11-14 12:20:13 +01:00
|
|
|
, python
|
|
|
|
, buildPythonPackage
|
|
|
|
, numpy
|
|
|
|
, llvmlite
|
2021-02-07 17:30:53 +01:00
|
|
|
, setuptools
|
2016-11-14 12:20:13 +01:00
|
|
|
, libcxx
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2021-03-24 10:28:19 +01:00
|
|
|
version = "0.53.0";
|
2017-05-27 11:25:35 +02:00
|
|
|
pname = "numba";
|
2021-03-01 20:50:41 -05:00
|
|
|
# uses f-strings, python 3.9 is not yet supported
|
|
|
|
disabled = pythonOlder "3.6" || pythonAtLeast "3.9";
|
2016-11-14 12:20:13 +01:00
|
|
|
|
2017-12-30 12:25:04 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-24 10:28:19 +01:00
|
|
|
sha256 = "55c11d7edbba2ba715f2b56f5294cad55cfd87bff98e2627c3047c2d5cc52d16";
|
2016-11-14 12:20:13 +01:00
|
|
|
};
|
|
|
|
|
2021-01-24 01:29:22 +01:00
|
|
|
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
|
2016-11-14 12:20:13 +01:00
|
|
|
|
2021-02-08 20:44:21 +01:00
|
|
|
propagatedBuildInputs = [ numpy llvmlite setuptools ];
|
|
|
|
pythonImportsCheck = [ "numba" ];
|
2016-11-14 12:20:13 +01:00
|
|
|
# Copy test script into $out and run the test suite.
|
|
|
|
checkPhase = ''
|
2017-12-30 12:25:04 +01:00
|
|
|
${python.interpreter} -m numba.runtests
|
2016-11-14 12:20:13 +01:00
|
|
|
'';
|
|
|
|
# ImportError: cannot import name '_typeconv'
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-24 01:29:22 +01:00
|
|
|
meta = with lib; {
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "http://numba.pydata.org/";
|
2021-01-24 01:29:22 +01:00
|
|
|
license = licenses.bsd2;
|
2016-11-14 12:20:13 +01:00
|
|
|
description = "Compiling Python code using LLVM";
|
2021-01-24 01:29:22 +01:00
|
|
|
maintainers = with maintainers; [ fridh ];
|
2016-11-14 12:20:13 +01:00
|
|
|
};
|
2017-02-13 11:00:12 +01:00
|
|
|
}
|