python3Packages.tables: use hdf5_1_10 instead of hdf5

Without that, the test suite of python3Packages.pandas segfault.
This commit is contained in:
Thomas Gerbet 2021-04-06 19:21:07 +02:00
parent b9fcaefeb3
commit 50d604314e

View file

@ -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 { };