pythonPackages.llvmlite: 0.8.0 -> 0.11.0

This commit is contained in:
Frederik Rietdijk 2016-06-01 19:52:10 +02:00
parent 4ac191d773
commit bc9be9425a

View File

@ -11991,16 +11991,16 @@ in modules // {
llvmlite = buildPythonPackage rec { llvmlite = buildPythonPackage rec {
name = "llvmlite-${version}"; name = "llvmlite-${version}";
version = "0.8.0"; version = "0.11.0";
disabled = isPyPy; disabled = isPyPy;
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "mirror://pypi/l/llvmlite/${name}.tar.gz"; url = "mirror://pypi/l/llvmlite/${name}.tar.gz";
sha256 = "a10d8d5e597c6a54ec418baddd31a51a0b7937a895d75b240d890aead946081c"; sha256 = "1gc2yd4j855fb16nb341lm4z3hd4j40lhswqv116xlg4p5dyxkwk";
}; };
llvm = pkgs.llvm_36; llvm = pkgs.llvm_37;
propagatedBuildInputs = with self; [ llvm ] ++ optional (pythonOlder "3.4") enum34; propagatedBuildInputs = with self; [ llvm ] ++ optional (pythonOlder "3.4") enum34;
@ -12008,6 +12008,8 @@ in modules // {
# https://github.com/numba/llvmlite/issues/93 # https://github.com/numba/llvmlite/issues/93
patchPhase = '' patchPhase = ''
substituteInPlace ffi/Makefile.linux --replace "-static-libstdc++" "" substituteInPlace ffi/Makefile.linux --replace "-static-libstdc++" ""
substituteInPlace llvmlite/tests/test_binding.py --replace "test_linux" "nope"
''; '';
# Set directory containing llvm-config binary # Set directory containing llvm-config binary
preConfigure = '' preConfigure = ''