From 50d604314e736d24dc7aa6749b5482c859147b17 Mon Sep 17 00:00:00 2001 From: Thomas Gerbet Date: Tue, 6 Apr 2021 19:21:07 +0200 Subject: [PATCH] python3Packages.tables: use hdf5_1_10 instead of hdf5 Without that, the test suite of python3Packages.pandas segfault. --- pkgs/top-level/python-packages.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ef0bc05ebaa..0ee6db02a76 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8128,9 +8128,13 @@ in { tableaudocumentapi = callPackage ../development/python-modules/tableaudocumentapi { }; tables = if isPy3k then - callPackage ../development/python-modules/tables { } + callPackage ../development/python-modules/tables { + hdf5 = pkgs.hdf5_1_10; + } else - callPackage ../development/python-modules/tables/3.5.nix { }; + callPackage ../development/python-modules/tables/3.5.nix { + hdf5 = pkgs.hdf5_1_10; + }; tablib = callPackage ../development/python-modules/tablib { };