Merge pull request #301743 from GaetanLepage/arviz

python311Packages.arviz: 0.17.1 -> 0.18.0
This commit is contained in:
Someone 2024-04-13 09:31:40 +00:00 committed by GitHub
commit 6f1f21b417
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,6 @@
{ lib
, buildPythonPackage
, dm-tree
, fetchFromGitHub
, emcee
, h5netcdf
@ -14,6 +15,7 @@
, scipy
, packaging
, pythonOlder
, typing-extensions
, xarray
, xarray-einstats
, zarr
@ -31,27 +33,32 @@
buildPythonPackage rec {
pname = "arviz";
version = "0.17.1";
version = "0.18.0";
pyproject = true;
disabled = pythonOlder "3.9";
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "arviz-devs";
repo = "arviz";
rev = "refs/tags/v${version}";
hash = "sha256-V0/yboKpK/4QuCOzKDiyFpu/J2JLu0aQxRZ+rpMS9eY=";
hash = "sha256-SZRqSqChQBSA9/jBXN2ds9hh6TI3qZksHai1j2oVsq0=";
};
propagatedBuildInputs = [
build-system = [
packaging
setuptools
];
dependencies = [
dm-tree
h5netcdf
matplotlib
netcdf4
numpy
packaging
pandas
scipy
setuptools
typing-extensions
xarray
xarray-einstats
];