From 36119423e27e025e0bfdaeb71678bd30b092bbab Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Wed, 16 Oct 2019 23:40:21 -0700 Subject: [PATCH] python37Packages.tables: 3.5.2 -> 3.6.0 --- pkgs/development/python-modules/tables/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/tables/default.nix b/pkgs/development/python-modules/tables/default.nix index 4cca72aa313..444901d9aaf 100644 --- a/pkgs/development/python-modules/tables/default.nix +++ b/pkgs/development/python-modules/tables/default.nix @@ -1,15 +1,16 @@ -{ stdenv, lib, fetchPypi, python, buildPythonPackage +{ stdenv, lib, fetchPypi, python, buildPythonPackage, isPy38 , cython, bzip2, lzo, numpy, numexpr, hdf5, six, c-blosc, mock }: with stdenv.lib; buildPythonPackage rec { - version = "3.5.2"; + version = "3.6.0"; pname = "tables"; + disabled = isPy38; # unable to build, remove with next bump. src = fetchPypi { inherit pname version; - sha256 = "1hikrki0hx94ass31pn0jyz9iy0zhnkjacfk86m21cxsc8if685j"; + sha256 = "0k9xc0b49j311r6yayw7wzjay6ch3jznijhzc4x33yv490hqhd6v"; }; buildInputs = [ hdf5 cython bzip2 lzo c-blosc ];