2016-11-14 12:18:54 +01:00
|
|
|
{ stdenv
|
2017-12-30 12:24:23 +01:00
|
|
|
, fetchPypi
|
2016-11-14 12:18:54 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, python
|
|
|
|
, llvm
|
|
|
|
, pythonOlder
|
|
|
|
, isPyPy
|
|
|
|
, enum34
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "llvmlite";
|
2020-02-06 10:14:39 +01:00
|
|
|
version = "0.31.0";
|
2016-11-14 12:18:54 +01:00
|
|
|
|
|
|
|
disabled = isPyPy;
|
|
|
|
|
2017-12-30 12:24:23 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-02-06 10:14:39 +01:00
|
|
|
sha256 = "22ab2b9d7ec79fab66ac8b3d2133347de86addc2e2df1b3793e523ac84baa3c8";
|
2016-11-14 12:18:54 +01:00
|
|
|
};
|
|
|
|
|
2019-01-05 11:54:27 +01:00
|
|
|
nativeBuildInputs = [ llvm ];
|
|
|
|
propagatedBuildInputs = [ ] ++ stdenv.lib.optional (pythonOlder "3.4") enum34;
|
2016-11-14 12:18:54 +01:00
|
|
|
|
|
|
|
# Disable static linking
|
|
|
|
# https://github.com/numba/llvmlite/issues/93
|
2017-12-30 12:24:23 +01:00
|
|
|
postPatch = ''
|
2016-11-14 12:18:54 +01:00
|
|
|
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";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://llvmlite.pydata.org/";
|
2016-11-14 12:18:54 +01:00
|
|
|
license = stdenv.lib.licenses.bsd2;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ fridh ];
|
|
|
|
};
|
2017-02-13 10:59:59 +01:00
|
|
|
}
|