summary refs log tree commit diff
path: root/pkgs/development/python-modules/llvmlite
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-03-17 11:20:54 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2017-04-18 12:07:56 +0200
commit5ad8e8722a6349797d516a6dc35820675ce9fa29 (patch)
treead9239db9d7c9c0335da2e8554d4cb3472331c4b /pkgs/development/python-modules/llvmlite
parentfd87b9957c0ad25358e620c1b9e29ac842596e2c (diff)
downloadnixlib-5ad8e8722a6349797d516a6dc35820675ce9fa29.tar
nixlib-5ad8e8722a6349797d516a6dc35820675ce9fa29.tar.gz
nixlib-5ad8e8722a6349797d516a6dc35820675ce9fa29.tar.bz2
nixlib-5ad8e8722a6349797d516a6dc35820675ce9fa29.tar.lz
nixlib-5ad8e8722a6349797d516a6dc35820675ce9fa29.tar.xz
nixlib-5ad8e8722a6349797d516a6dc35820675ce9fa29.tar.zst
nixlib-5ad8e8722a6349797d516a6dc35820675ce9fa29.zip
pythonPackages.llvmlite: 0.15.0 -> 0.16.0
Diffstat (limited to 'pkgs/development/python-modules/llvmlite')
-rw-r--r--pkgs/development/python-modules/llvmlite/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/llvmlite/default.nix b/pkgs/development/python-modules/llvmlite/default.nix
index 1da503417503..6b6be639851f 100644
--- a/pkgs/development/python-modules/llvmlite/default.nix
+++ b/pkgs/development/python-modules/llvmlite/default.nix
@@ -11,13 +11,13 @@
 buildPythonPackage rec {
   pname = "llvmlite";
   name = "${pname}-${version}";
-  version = "0.15.0";
+  version = "0.16.0";
 
   disabled = isPyPy;
 
   src = fetchurl {
     url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
-    sha256 = "c855835537eda61f3a0d19aedc44f006d5084a2d322aee8ffa87aa06bb800dc4";
+    sha256 = "ef3bae32482f91742d91571b5225a6943804291eb9405b98090a7b50942ec5e9";
   };
 
   propagatedBuildInputs = [ llvm ] ++ stdenv.lib.optional (pythonOlder "3.4") enum34;