ceph: Remove obsolete scipy override.

The mentioned bugs have merged linked pull requests a long time ago:

* b9dea87ff1
  in Ceph v15.1.0
* f701ed8b26
  in Ceph v16.1.0
main
Niklas Hambüchen 3 years ago
parent 1b3e1f99fe
commit c6cb7badab
  1. 16
      pkgs/tools/filesystems/ceph/default.nix

@ -104,21 +104,7 @@ let
meta = getMeta "Ceph common module for code shared by manager modules";
};
python = python3.override {
packageOverrides = self: super: {
# scipy > 1.3 breaks diskprediction_local, leading to mgr hang on startup
# Bump once these issues are resolved:
# https://tracker.ceph.com/issues/42764 https://tracker.ceph.com/issues/45147
scipy = super.scipy.overridePythonAttrs (oldAttrs: rec {
version = "1.3.3";
src = oldAttrs.src.override {
inherit version;
sha256 = "02iqb7ws7fw5fd1a83hx705pzrw1imj7z0bphjsl4bfvw254xgv4";
};
doCheck = false;
});
};
};
python = python3;
ceph-python-env = python.withPackages (ps: [
ps.sphinx

Loading…
Cancel
Save