From 19acc797c73f0881e46d69ea5e5e981d54a0fb3b Mon Sep 17 00:00:00 2001 From: Drew Risinger Date: Mon, 12 Apr 2021 17:00:46 -0400 Subject: [PATCH] hdf5_1_10: rollback 1.10.7 -> 1.10.6 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``. https://github.com/PyTables/PyTables/issues/845 --- pkgs/tools/misc/hdf5/1.10.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/hdf5/1.10.nix b/pkgs/tools/misc/hdf5/1.10.nix index 1a972daf6104a2..bb43d2148bd04f 100644 --- a/pkgs/tools/misc/hdf5/1.10.nix +++ b/pkgs/tools/misc/hdf5/1.10.nix @@ -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" ];