pythonPackages.tables: 3.4.4 -> 3.5.2

authored by Jaakko Luttinen and committed by Frederik Rietdijk affd8056 cd5f46ac

+4 -4
+4 -4
pkgs/development/python-modules/tables/default.nix
··· 1 1 { stdenv, fetchPypi, python, buildPythonPackage 2 - , cython, bzip2, lzo, numpy, numexpr, hdf5, six, c-blosc }: 2 + , cython, bzip2, lzo, numpy, numexpr, hdf5, six, c-blosc, mock }: 3 3 4 4 buildPythonPackage rec { 5 - version = "3.4.4"; 5 + version = "3.5.2"; 6 6 pname = "tables"; 7 7 8 8 src = fetchPypi { 9 9 inherit pname version; 10 - sha256 = "bdc5c073712af2a43babd139c4855fc99496bb2c3f3f5d1b4770a985e6f9ce29"; 10 + sha256 = "1hikrki0hx94ass31pn0jyz9iy0zhnkjacfk86m21cxsc8if685j"; 11 11 }; 12 12 13 13 buildInputs = [ hdf5 cython bzip2 lzo c-blosc ]; 14 - propagatedBuildInputs = [ numpy numexpr six ]; 14 + propagatedBuildInputs = [ numpy numexpr six mock ]; 15 15 16 16 # The setup script complains about missing run-paths, but they are 17 17 # actually set.