35 lines
731 B
Nix
Raw Normal View History

2017-04-18 11:50:55 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
2017-04-18 11:50:55 +02:00
, numpy
, pandas
, setuptools
2019-04-18 21:26:09 -04:00
, isPy3k
2021-03-22 14:33:25 +01:00
, setuptools-scm
2017-04-18 11:50:55 +02:00
}:
buildPythonPackage rec {
pname = "xarray";
version = "0.17.0";
disabled = !isPy3k;
2017-04-18 11:50:55 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "9c2edad2a4e588f9117c666a4249920b9717fb75703b96998cf65fcd4f60551f";
2017-04-18 11:50:55 +02:00
};
2021-03-22 14:33:25 +01:00
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ numpy pandas setuptools ];
checkInputs = [ pytestCheckHook ];
2017-04-18 11:50:55 +02:00
pythonImportsCheck = [ "xarray" ];
2017-04-18 11:50:55 +02:00
meta = {
description = "N-D labeled arrays and datasets in Python";
homepage = "https://github.com/pydata/xarray";
2017-04-18 11:50:55 +02:00
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fridh ];
};
}