depot/third_party/nixpkgs/pkgs/development/python-modules/xarray/default.nix

56 lines
928 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchPypi,
flaky,
numpy,
packaging,
pandas,
pytestCheckHook,
pythonOlder,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "xarray";
version = "2024.2.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-oQXwJ5EILIiOviYiCQvq/y57aFcUiNYv5q/as1tLcX8=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
numpy
packaging
pandas
];
nativeCheckInputs = [
flaky
pytestCheckHook
];
pytestFlagsArray = [
# ModuleNotFoundError: No module named 'xarray.datatree_'
"--ignore xarray/tests/datatree"
];
pythonImportsCheck = [ "xarray" ];
meta = with lib; {
description = "N-D labeled arrays and datasets in Python";
homepage = "https://github.com/pydata/xarray";
license = licenses.asl20;
};
}