From 14d352de57c75c22261aca9b8bb8d998c04c0e35 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Wed, 17 Jul 2024 13:12:41 +0200 Subject: [PATCH] python311Packages.cf-xarray: 0.9.3 -> 0.9.4 Diff: https://github.com/xarray-contrib/cf-xarray/compare/refs/tags/v0.9.3...v0.9.4 Changelog: https://github.com/xarray-contrib/cf-xarray/releases/tag/v0.9.4 --- .../python-modules/cf-xarray/default.nix | 26 +++++++++++-------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/pkgs/development/python-modules/cf-xarray/default.nix b/pkgs/development/python-modules/cf-xarray/default.nix index 2ed4c9407ac0..49bf0b39adf5 100644 --- a/pkgs/development/python-modules/cf-xarray/default.nix +++ b/pkgs/development/python-modules/cf-xarray/default.nix @@ -1,26 +1,31 @@ { lib, buildPythonPackage, - dask, + pythonOlder, fetchFromGitHub, + + # build-system + setuptools, + setuptools-scm, + xarray, + + # optional-dependencies matplotlib, pint, pooch, - pytestCheckHook, - pythonOlder, regex, rich, - scipy, - setuptools, - setuptools-scm, shapely, - wheel, - xarray, + + # checks + dask, + pytestCheckHook, + scipy, }: buildPythonPackage rec { pname = "cf-xarray"; - version = "0.9.3"; + version = "0.9.4"; pyproject = true; disabled = pythonOlder "3.9"; @@ -29,13 +34,12 @@ buildPythonPackage rec { owner = "xarray-contrib"; repo = "cf-xarray"; rev = "refs/tags/v${version}"; - hash = "sha256-7eL8z2r1+X80QqiL/5XzfA+Jlx+WuKvuxIWG4YLCwfg="; + hash = "sha256-zio00ki86DZqWtGnVseDR28He4DW1jjKdwfsxRwFDfg="; }; build-system = [ setuptools setuptools-scm - wheel xarray ];