summary refs log tree commit diff
path: root/pkgs/tools/misc/hdf5
diff options
context:
space:
mode:
authorDrew Risinger <drewrisinger@users.noreply.github.com>2021-04-12 17:00:46 -0400
committerDrew Risinger <drewrisinger@users.noreply.github.com>2021-04-28 10:43:04 -0400
commit19acc797c73f0881e46d69ea5e5e981d54a0fb3b (patch)
treee8e5070fd90c40137eaaba3ff721abc95e79ea34 /pkgs/tools/misc/hdf5
parentf64a78e3a36436bd11e91240f5bc14742acc1bf3 (diff)
downloadnixpkgs-19acc797c73f0881e46d69ea5e5e981d54a0fb3b.tar
nixpkgs-19acc797c73f0881e46d69ea5e5e981d54a0fb3b.tar.gz
nixpkgs-19acc797c73f0881e46d69ea5e5e981d54a0fb3b.tar.bz2
nixpkgs-19acc797c73f0881e46d69ea5e5e981d54a0fb3b.tar.lz
nixpkgs-19acc797c73f0881e46d69ea5e5e981d54a0fb3b.tar.xz
nixpkgs-19acc797c73f0881e46d69ea5e5e981d54a0fb3b.tar.zst
nixpkgs-19acc797c73f0881e46d69ea5e5e981d54a0fb3b.zip
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
Diffstat (limited to 'pkgs/tools/misc/hdf5')
-rw-r--r--pkgs/tools/misc/hdf5/1.10.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/misc/hdf5/1.10.nix b/pkgs/tools/misc/hdf5/1.10.nix
index 1a972daf610..bb43d2148bd 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" ];