51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
|
{ stdenv
|
||
|
, fetchPypi
|
||
|
, buildPythonPackage
|
||
|
, python
|
||
|
, llvm
|
||
|
, pythonOlder
|
||
|
, isPyPy
|
||
|
, enum34
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "llvmlite";
|
||
|
version = "0.31.0";
|
||
|
|
||
|
disabled = isPyPy;
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "22ab2b9d7ec79fab66ac8b3d2133347de86addc2e2df1b3793e523ac84baa3c8";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ llvm ];
|
||
|
propagatedBuildInputs = [ ] ++ stdenv.lib.optional (pythonOlder "3.4") enum34;
|
||
|
|
||
|
# 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}/bin/llvm-config
|
||
|
'';
|
||
|
checkPhase = ''
|
||
|
${python.executable} runtests.py
|
||
|
'';
|
||
|
|
||
|
__impureHostDeps = stdenv.lib.optionals stdenv.isDarwin [ "/usr/lib/libm.dylib" ];
|
||
|
|
||
|
passthru.llvm = llvm;
|
||
|
|
||
|
meta = {
|
||
|
description = "A lightweight LLVM python binding for writing JIT compilers";
|
||
|
homepage = "http://llvmlite.pydata.org/";
|
||
|
license = stdenv.lib.licenses.bsd2;
|
||
|
maintainers = with stdenv.lib.maintainers; [ fridh ];
|
||
|
};
|
||
|
}
|