Skip to content

Commit

Permalink
python3Packages.tables: use hdf5_1_10 instead of hdf5
Browse files Browse the repository at this point in the history
Without that, the test suite of python3Packages.pandas segfault.
  • Loading branch information
LeSuisse committed Apr 8, 2021
1 parent b9fcaef commit 50d6043
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };

Expand Down

0 comments on commit 50d6043

Please sign in to comment.