From bc9be9425a841b8f5d128d68d607f1177e8e58b1 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 1 Jun 2016 19:52:10 +0200 Subject: [PATCH] pythonPackages.llvmlite: 0.8.0 -> 0.11.0 --- pkgs/top-level/python-packages.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 47657b379f2..d99071dba2c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11991,16 +11991,16 @@ in modules // { llvmlite = buildPythonPackage rec { name = "llvmlite-${version}"; - version = "0.8.0"; + version = "0.11.0"; disabled = isPyPy; src = pkgs.fetchurl { 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; @@ -12008,6 +12008,8 @@ in modules // { # https://github.com/numba/llvmlite/issues/93 patchPhase = '' substituteInPlace ffi/Makefile.linux --replace "-static-libstdc++" "" + + substituteInPlace llvmlite/tests/test_binding.py --replace "test_linux" "nope" ''; # Set directory containing llvm-config binary preConfigure = ''