f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
66 lines
1.4 KiB
Nix
66 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
buildPythonPackage,
|
|
isPyPy,
|
|
pythonAtLeast,
|
|
|
|
# build-system
|
|
llvm,
|
|
setuptools,
|
|
|
|
# tests
|
|
python,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "llvmlite";
|
|
version = "0.43.0";
|
|
pyproject = true;
|
|
|
|
disabled = isPyPy || pythonAtLeast "3.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "numba";
|
|
repo = "llvmlite";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-5QBSRDb28Bui9IOhGofj+c7Rk7J5fNv5nPksEPY/O5o=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
llvm
|
|
setuptools
|
|
];
|
|
|
|
# Disable static linking
|
|
# https://github.com/numba/llvmlite/issues/93
|
|
postPatch = ''
|
|
substituteInPlace ffi/Makefile.linux --replace "-static-libstdc++" ""
|
|
|
|
substituteInPlace llvmlite/tests/test_binding.py --replace "test_linux" "nope"
|
|
'';
|
|
|
|
# Set directory containing llvm-config binary
|
|
preConfigure = ''
|
|
export LLVM_CONFIG=${llvm.dev}/bin/llvm-config
|
|
'';
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
${python.executable} runtests.py
|
|
runHook postCheck
|
|
'';
|
|
|
|
__impureHostDeps = lib.optionals stdenv.isDarwin [ "/usr/lib/libm.dylib" ];
|
|
|
|
passthru.llvm = llvm;
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/numba/llvmlite/blob/v${version}/CHANGE_LOG";
|
|
description = "Lightweight LLVM python binding for writing JIT compilers";
|
|
downloadPage = "https://github.com/numba/llvmlite";
|
|
homepage = "http://llvmlite.pydata.org/";
|
|
license = licenses.bsd2;
|
|
};
|
|
}
|