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

53 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, pythonAtLeast
, pythonOlder
2017-12-30 11:25:04 +00:00
, fetchPypi
, python
, buildPythonPackage
, numpy
, llvmlite
, setuptools
, libcxx
}:
buildPythonPackage rec {
version = "0.55.0";
pname = "numba";
disabled = pythonOlder "3.6" || pythonAtLeast "3.10";
2017-12-30 11:25:04 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-siHr2ZdmKh3Ld+TwkUDgIvv+dXetB4H8LgIUE126bL0=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "1.21" "1.22"
substituteInPlace numba/__init__.py \
--replace "(1, 20)" "(1, 21)"
'';
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1";
propagatedBuildInputs = [ numpy llvmlite setuptools ];
# 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;
pythonImportsCheck = [ "numba" ];
meta = with lib; {
homepage = "https://numba.pydata.org/";
license = licenses.bsd2;
description = "Compiling Python code using LLVM";
maintainers = with maintainers; [ fridh ];
};
2017-02-13 10:00:12 +00:00
}