nixpkgs/pkgs/development/python-modules/numba/default.nix

43 lines
1,002 B
Nix
Raw Normal View History

{ stdenv
2017-12-30 11:25:04 +00:00
, fetchPypi
, python
, buildPythonPackage
, isPy27
, isPy33
, isPy3k
, numpy
, llvmlite
, argparse
, funcsigs
, singledispatch
, libcxx
}:
buildPythonPackage rec {
2018-02-26 17:46:18 +00:00
version = "0.37.0";
pname = "numba";
2017-12-30 11:25:04 +00:00
src = fetchPypi {
inherit pname version;
2018-02-26 17:46:18 +00:00
sha256 = "c62121b2d384d8b4d244ef26c1cf8bb5cb819278a80b893bf41918ad6d391258";
};
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-12-30 11:25:04 +00:00
${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 ];
};
2017-02-13 10:00:12 +00:00
}