python3Packages.nifty8: 8.5.2 -> 8.5.4 (#368906)

authored by Arne Keller and committed by GitHub 4138c1b3 85d08481

+11 -3
+11 -3
pkgs/development/python-modules/nifty8/default.nix
··· 27 27 28 28 buildPythonPackage rec { 29 29 pname = "nifty8"; 30 - version = "8.5.2"; 30 + version = "8.5.4"; 31 31 pyproject = true; 32 32 33 33 src = fetchFromGitLab { 34 34 domain = "gitlab.mpcdf.mpg.de"; 35 35 owner = "ift"; 36 36 repo = "nifty"; 37 - rev = "v${version}"; 38 - hash = "sha256-EWsJX+iqKOhQXEWlQfYUiPYqyfOfrwLtbI+DVn7vCQI="; 37 + tag = "v${version}"; 38 + hash = "sha256-Q42ZhQ/T8JmkG75BexevbvVKQqfDmMG6+oTYR0Ze718="; 39 39 }; 40 40 41 41 build-system = [ setuptools ]; ··· 76 76 77 77 meta = { 78 78 homepage = "https://gitlab.mpcdf.mpg.de/ift/nifty"; 79 + changelog = "https://gitlab.mpcdf.mpg.de/ift/nifty/-/blob/${src.tag}/ChangeLog.md"; 79 80 description = "Bayesian Imaging library for high-dimensional posteriors"; 81 + longDescription = '' 82 + NIFTy, "Numerical Information Field Theory", is a Bayesian imaging library. 83 + It is designed to infer the million to billion dimensional posterior 84 + distribution in the image space from noisy input data. At the core of 85 + NIFTy lies a set of powerful Gaussian Process (GP) models and accurate 86 + Variational Inference (VI) algorithms. 87 + ''; 80 88 license = lib.licenses.gpl3; 81 89 maintainers = with lib.maintainers; [ parras ]; 82 90 };