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