2017-04-18 10:50:55 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pytest
|
|
|
|
, numpy
|
|
|
|
, pandas
|
|
|
|
, python
|
2020-07-09 12:12:49 +01:00
|
|
|
, setuptools
|
2019-04-19 02:26:09 +01:00
|
|
|
, isPy3k
|
2017-04-18 10:50:55 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "xarray";
|
2020-09-21 20:55:29 +01:00
|
|
|
version = "0.16.1";
|
2017-04-18 10:50:55 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-09-21 20:55:29 +01:00
|
|
|
sha256 = "5e1af056ff834bf62ca57da917159328fab21b1f8c25284f92083016bb2d92a5";
|
2017-04-18 10:50:55 +01:00
|
|
|
};
|
|
|
|
|
2017-12-31 13:14:52 +00:00
|
|
|
checkInputs = [ pytest ];
|
2020-07-09 12:12:49 +01:00
|
|
|
propagatedBuildInputs = [ numpy pandas setuptools ];
|
2017-04-18 10:50:55 +01:00
|
|
|
|
|
|
|
checkPhase = ''
|
2019-04-19 02:26:09 +01:00
|
|
|
pytest $out/${python.sitePackages}
|
2017-04-18 10:50:55 +01:00
|
|
|
'';
|
|
|
|
|
2017-12-31 13:14:52 +00:00
|
|
|
# There always seem to be broken tests...
|
|
|
|
doCheck = false;
|
|
|
|
|
2019-04-18 08:19:07 +01:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|