python312Packages.xarray: 2024.07.0 -> 2024.09.0 (#347355)

This commit is contained in:
Doron Behar 2024-10-14 14:28:26 +03:00 committed by GitHub
commit c9a3c8925c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "xarray";
version = "2024.07.0";
version = "2024.09.0";
pyproject = true;
disabled = pythonOlder "3.10";
@ -22,7 +22,7 @@ buildPythonPackage rec {
owner = "pydata";
repo = "xarray";
rev = "refs/tags/v${version}";
hash = "sha256-pt0qnkgf3E/QQHQAaZLommakhqEJ4NuTyjx5tdk2N1U=";
hash = "sha256-ZrqdpzcNjZMxET355PRWQaUPjvFm+m2y71F7qt8DCjg=";
};
build-system = [
@ -42,10 +42,13 @@ buildPythonPackage rec {
pythonImportsCheck = [ "xarray" ];
meta = with lib; {
meta = {
changelog = "https://github.com/pydata/xarray/blob/${src.rev}/doc/whats-new.rst";
description = "N-D labeled arrays and datasets in Python";
homepage = "https://github.com/pydata/xarray";
license = licenses.asl20;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
doronbehar
];
};
}