python312Packages.cf-xarray: 0.10.0 -> 0.10.1 (#387754)

authored by Nick Cao and committed by GitHub 6b1a950a 5c6bec2e

+3 -2
+3 -2
pkgs/development/python-modules/cf-xarray/default.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "cf-xarray"; 27 - version = "0.10.0"; 27 + version = "0.10.1"; 28 28 pyproject = true; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "xarray-contrib"; 32 32 repo = "cf-xarray"; 33 33 tag = "v${version}"; 34 - hash = "sha256-lAVH2QGdMyU5A6QTLKujeAh8n1AkCsAtdyKQEqLahTk="; 34 + hash = "sha256-rWTaVhRqmTwogqYQ+mesZY6ET9YnSiAqDItoZfVgpYg="; 35 35 }; 36 36 37 37 build-system = [ ··· 64 64 disabledTestPaths = [ 65 65 # Tests require network access 66 66 "cf_xarray/tests/test_accessor.py" 67 + "cf_xarray/tests/test_groupers.py" 67 68 "cf_xarray/tests/test_helpers.py" 68 69 ]; 69 70