bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
76 lines
1.4 KiB
Nix
76 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
dask,
|
|
fetchFromGitHub,
|
|
matplotlib,
|
|
pint,
|
|
pooch,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
regex,
|
|
rich,
|
|
scipy,
|
|
setuptools,
|
|
setuptools-scm,
|
|
shapely,
|
|
wheel,
|
|
xarray,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cf-xarray";
|
|
version = "0.9.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xarray-contrib";
|
|
repo = "cf-xarray";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-Og84lB99576G3IZz8LNafF86TyYP+ooe2tL8wb60RPw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
wheel
|
|
xarray
|
|
];
|
|
|
|
propagatedBuildInputs = [ xarray ];
|
|
|
|
passthru.optional-dependencies = {
|
|
all = [
|
|
matplotlib
|
|
pint
|
|
pooch
|
|
regex
|
|
rich
|
|
shapely
|
|
];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
dask
|
|
pytestCheckHook
|
|
scipy
|
|
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
|
|
|
|
pythonImportsCheck = [ "cf_xarray" ];
|
|
|
|
disabledTestPaths = [
|
|
# Tests require network access
|
|
"cf_xarray/tests/test_accessor.py"
|
|
"cf_xarray/tests/test_helpers.py"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Accessor for xarray objects that interprets CF attributes";
|
|
homepage = "https://github.com/xarray-contrib/cf-xarray";
|
|
changelog = "https://github.com/xarray-contrib/cf-xarray/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|