Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python: llvmlite: 0.20.0 -> 0.21.0

+7 -8
+6 -7
pkgs/development/python-modules/llvmlite/default.nix
··· 1 1 { stdenv 2 - , fetchurl 2 + , fetchPypi 3 3 , buildPythonPackage 4 4 , python 5 5 , llvm ··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "llvmlite"; 13 - name = "${pname}-${version}"; 14 - version = "0.20.0"; 13 + version = "0.21.0"; 15 14 16 15 disabled = isPyPy; 17 16 18 - src = fetchurl { 19 - url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz"; 20 - sha256 = "b2f174848df16bb9195a07fec102110a06d018da736bd9b3570a54d44c797c29"; 17 + src = fetchPypi { 18 + inherit pname version; 19 + sha256 = "3a5dd0695fdfb9fd47464cd71791b84935bf9642e11f4811d57aa1f2da8cdaa8"; 21 20 }; 22 21 23 22 propagatedBuildInputs = [ llvm ] ++ stdenv.lib.optional (pythonOlder "3.4") enum34; 24 23 25 24 # Disable static linking 26 25 # https://github.com/numba/llvmlite/issues/93 27 - patchPhase = '' 26 + postPatch = '' 28 27 substituteInPlace ffi/Makefile.linux --replace "-static-libstdc++" "" 29 28 30 29 substituteInPlace llvmlite/tests/test_binding.py --replace "test_linux" "nope"
+1 -1
pkgs/top-level/python-packages.nix
··· 10304 10304 10305 10305 locustio = callPackage ../development/python-modules/locustio { }; 10306 10306 10307 - llvmlite = callPackage ../development/python-modules/llvmlite {llvm=pkgs.llvm_4;}; 10307 + llvmlite = callPackage ../development/python-modules/llvmlite {llvm=pkgs.llvm_5;}; 10308 10308 10309 10309 lockfile = buildPythonPackage rec { 10310 10310 pname = "lockfile";