2016-11-14 11:18:54 +00:00
|
|
|
{ stdenv
|
2017-12-30 11:24:23 +00:00
|
|
|
, fetchPypi
|
2016-11-14 11:18:54 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, python
|
|
|
|
, llvm
|
|
|
|
, pythonOlder
|
|
|
|
, isPyPy
|
|
|
|
, enum34
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "llvmlite";
|
2019-05-30 07:47:55 +01:00
|
|
|
version = "0.28.0";
|
2016-11-14 11:18:54 +00:00
|
|
|
|
|
|
|
disabled = isPyPy;
|
|
|
|
|
2017-12-30 11:24:23 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-30 07:47:55 +01:00
|
|
|
sha256 = "a189c0cd8a80e8bbd002a1e422b1efcc2bceab2cb63b961f2d03ab711c3ba45b";
|
2016-11-14 11:18:54 +00:00
|
|
|
};
|
|
|
|
|
2019-01-05 10:54:27 +00:00
|
|
|
nativeBuildInputs = [ llvm ];
|
|
|
|
propagatedBuildInputs = [ ] ++ stdenv.lib.optional (pythonOlder "3.4") enum34;
|
2016-11-14 11:18:54 +00:00
|
|
|
|
|
|
|
# Disable static linking
|
|
|
|
# https://github.com/numba/llvmlite/issues/93
|
2017-12-30 11:24:23 +00:00
|
|
|
postPatch = ''
|
2016-11-14 11:18:54 +00:00
|
|
|
substituteInPlace ffi/Makefile.linux --replace "-static-libstdc++" ""
|
|
|
|
|
|
|
|
substituteInPlace llvmlite/tests/test_binding.py --replace "test_linux" "nope"
|
2019-06-09 11:25:30 +01:00
|
|
|
|
|
|
|
# llvm 7.1 is not officially supported but works fine.
|
|
|
|
# Remove when going to 0.29.0 / llvm 8
|
|
|
|
substituteInPlace ffi/build.py --replace "7.0." "7."
|
|
|
|
substituteInPlace llvmlite/tests/test_binding.py --replace "test_version" "dont_test_version"
|
2016-11-14 11:18:54 +00:00
|
|
|
'';
|
|
|
|
# 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";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://llvmlite.pydata.org/;
|
2016-11-14 11:18:54 +00:00
|
|
|
license = stdenv.lib.licenses.bsd2;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ fridh ];
|
|
|
|
};
|
2017-02-13 09:59:59 +00:00
|
|
|
}
|