nixpkgs/pkgs/development/python-modules/xarray/default.nix
Frederik Rietdijk fd92b92827 python3.pkgs.xarray: add missing packaging dependency
It's present during installation as it's propagated by the tools, but we
still need it at runtime.
2022-07-05 11:14:54 +02:00

53 lines
888 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, numpy
, packaging
, pandas
, pytestCheckHook
, pythonOlder
, setuptoolsBuildHook
, setuptools-scm
}:
buildPythonPackage rec {
pname = "xarray";
version = "2022.3.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-OYNEv30XBHeqzv9wIQ4R69aa9rFW/hOXgFTSXEhylEA=";
};
SETUPTOOLS_SCM_PRETEND_VERSION="${version}";
nativeBuildInputs = [
setuptoolsBuildHook
setuptools-scm
];
propagatedBuildInputs = [
numpy
packaging
pandas
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"xarray"
];
meta = with lib; {
description = "N-D labeled arrays and datasets in Python";
homepage = "https://github.com/pydata/xarray";
license = licenses.asl20;
maintainers = with maintainers; [ fridh ];
};
}