blob: fb4856989564d7ae78b4edb7bfc254fb0ea880c0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
{ lib
, stdenv
, fetchFromGitHub
, buildPythonPackage
, isPyPy
, pythonAtLeast
# build-system
, llvm
, setuptools
# tests
, python
}:
buildPythonPackage rec {
pname = "llvmlite";
version = "0.42.0";
pyproject = true;
disabled = isPyPy || pythonAtLeast "3.13";
src = fetchFromGitHub {
owner = "numba";
repo = "llvmlite";
rev = "refs/tags/v${version}";
hash = "sha256-vN2npyAyN6C340l69YSRtRJrAe4EHSqh4SCgWfeSQaQ=";
};
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 = "A lightweight LLVM python binding for writing JIT compilers";
downloadPage = "https://github.com/numba/llvmlite";
homepage = "http://llvmlite.pydata.org/";
license = licenses.bsd2;
};
}
|