Skip to content

Commit

Permalink
hdf5_1_10: rollback 1.10.7 -> 1.10.6
Browse files Browse the repository at this point in the history
This package only exists for compatibility with
``python3Packages.tables``, as far as I can tell based on usage in
nixpkgs.

``tables`` tests fail on hdf5 > v1.10.5, so we are reverting this to
the last "good" version of hdf5 that works with ``tables``.
``hdf5_1_10`` should hopefully be unpinned on the next release of
``python3Packages.tables``.
PyTables/PyTables#845
  • Loading branch information
drewrisinger committed Apr 28, 2021
1 parent f64a78e commit 19acc79
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/tools/misc/hdf5/1.10.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@
let inherit (lib) optional optionals; in

stdenv.mkDerivation rec {
version = "1.10.7";
# pinned to 1.10.6 for pythonPackages.tables v3.6.1. tables has test errors for hdf5 > 1.10.6. https://github.com/PyTables/PyTables/issues/845
version = "1.10.6";
pname = "hdf5";
src = fetchurl {
url = "https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-${lib.versions.majorMinor version}/${pname}-${version}/src/${pname}-${version}.tar.bz2";
sha256 = "0pm5xxry55i0h7wmvc7svzdaa90rnk7h78rrjmnlkz2ygsn8y082";
sha256 = "1gf38x51128hn00744358w27xgzjk0ff4wra4yxh2lk804ck1mh9";
};

outputs = [ "out" "dev" ];
Expand Down

0 comments on commit 19acc79

Please sign in to comment.