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

52 lines
918 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchFromGitHub,
numpy,
packaging,
pandas,
pytestCheckHook,
pythonOlder,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "xarray";
version = "2024.07.0";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "pydata";
repo = "xarray";
rev = "refs/tags/v${version}";
hash = "sha256-pt0qnkgf3E/QQHQAaZLommakhqEJ4NuTyjx5tdk2N1U=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
numpy
packaging
pandas
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "xarray" ];
meta = with lib; {
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;
};
}