Merge pull request #301743 from GaetanLepage/arviz

python311Packages.arviz: 0.17.1 -> 0.18.0

authored by Someone and committed by GitHub 6f1f21b4 c8c32da7

+13 -6
+13 -6
pkgs/development/python-modules/arviz/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 + , dm-tree 3 4 , fetchFromGitHub 4 5 , emcee 5 6 , h5netcdf ··· 14 15 , scipy 15 16 , packaging 16 17 , pythonOlder 18 + , typing-extensions 17 19 , xarray 18 20 , xarray-einstats 19 21 , zarr ··· 31 33 32 34 buildPythonPackage rec { 33 35 pname = "arviz"; 34 - version = "0.17.1"; 36 + version = "0.18.0"; 35 37 pyproject = true; 36 38 37 - disabled = pythonOlder "3.9"; 39 + disabled = pythonOlder "3.10"; 38 40 39 41 src = fetchFromGitHub { 40 42 owner = "arviz-devs"; 41 43 repo = "arviz"; 42 44 rev = "refs/tags/v${version}"; 43 - hash = "sha256-V0/yboKpK/4QuCOzKDiyFpu/J2JLu0aQxRZ+rpMS9eY="; 45 + hash = "sha256-SZRqSqChQBSA9/jBXN2ds9hh6TI3qZksHai1j2oVsq0="; 44 46 }; 45 47 46 - propagatedBuildInputs = [ 48 + build-system = [ 49 + packaging 50 + setuptools 51 + ]; 52 + 53 + dependencies = [ 54 + dm-tree 47 55 h5netcdf 48 56 matplotlib 49 57 netcdf4 50 58 numpy 51 - packaging 52 59 pandas 53 60 scipy 54 - setuptools 61 + typing-extensions 55 62 xarray 56 63 xarray-einstats 57 64 ];