about summary refs log tree commit diff
path: root/pkgs/development/python-modules/tables
diff options
context:
space:
mode:
authorTom Hunger <tehunger@gmail.com>2017-02-16 16:05:10 +0000
committerTom Hunger <tehunger@gmail.com>2017-03-15 12:28:18 +0000
commit5e31a7cca61286f90571432f6775d6a908361699 (patch)
tree1d52ead5258870977a7067c1f77b2088d801a548 /pkgs/development/python-modules/tables
parentb0115c2fac63d71eb83108106f2612bb47831497 (diff)
downloadnixlib-5e31a7cca61286f90571432f6775d6a908361699.tar
nixlib-5e31a7cca61286f90571432f6775d6a908361699.tar.gz
nixlib-5e31a7cca61286f90571432f6775d6a908361699.tar.bz2
nixlib-5e31a7cca61286f90571432f6775d6a908361699.tar.lz
nixlib-5e31a7cca61286f90571432f6775d6a908361699.tar.xz
nixlib-5e31a7cca61286f90571432f6775d6a908361699.tar.zst
nixlib-5e31a7cca61286f90571432f6775d6a908361699.zip
pytables: 3.2.2 -> 3.3.0
Diffstat (limited to 'pkgs/development/python-modules/tables')
-rw-r--r--pkgs/development/python-modules/tables/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/tables/default.nix b/pkgs/development/python-modules/tables/default.nix
index 88a39400c77c..e5de7c4e2a42 100644
--- a/pkgs/development/python-modules/tables/default.nix
+++ b/pkgs/development/python-modules/tables/default.nix
@@ -1,17 +1,17 @@
 { stdenv, fetchurl, python, buildPythonPackage
-, cython, bzip2, lzo, numpy, numexpr, hdf5 }:
+, cython, bzip2, lzo, numpy, numexpr, hdf5, six }:
 
 buildPythonPackage rec {
-  version = "3.2.2";
+  version = "3.3.0";
   name = "tables-${version}";
 
   src = fetchurl {
     url = "mirror://pypi/t/tables/${name}.tar.gz";
-    sha256 = "3564b351a71ec1737b503b001eb7ceae1f65d5d6e3ffe1ea75aafba10f37fa84";
+    sha256 = "0b4211s0zzdmh74k49ss0m9lc2ql2iazq2aa95ams6h45vqcr0w3";
   };
 
   buildInputs = [ hdf5 cython bzip2 lzo ];
-  propagatedBuildInputs = [ numpy numexpr ];
+  propagatedBuildInputs = [ numpy numexpr six ];
 
   # The setup script complains about missing run-paths, but they are
   # actually set.