about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2015-10-22 16:51:53 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2015-10-22 16:51:53 +0200
commit631e7af698734c7eacda6675a098d97388adaa4b (patch)
tree30a06b5a8f185ced99cc8acbc9f50c39f9ca99e3
parent45d8f62886b59b55210eab05b4fecc14a7964388 (diff)
python tables: 3.1.1 -> 3.2.2
-rw-r--r--pkgs/development/python-modules/tables/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/tables/default.nix b/pkgs/development/python-modules/tables/default.nix
index 7c897e9531fb5..f1551f41ae53b 100644
--- a/pkgs/development/python-modules/tables/default.nix
+++ b/pkgs/development/python-modules/tables/default.nix
@@ -2,12 +2,12 @@
 , cython, bzip2, lzo, numpy, numexpr, hdf5 }:
 
 buildPythonPackage rec {
-  version = "3.1.1";
+  version = "3.2.2";
   name = "tables-${version}";
 
   src = fetchurl {
-    url = "mirror://sourceforge/pytables/${name}.tar.gz";
-    sha256 = "18rdzv9xwiapb5c8y47rk2fi3fdm2dpjf68wfycma67ifrih7f9r";
+    url = "https://pypi.python.org/packages/source/t/tables/${name}.tar.gz";
+    sha256 = "3564b351a71ec1737b503b001eb7ceae1f65d5d6e3ffe1ea75aafba10f37fa84";
   };
 
   buildInputs = [ hdf5 cython bzip2 lzo ];