39 lines
726 B
Nix
Raw Normal View History

2017-04-18 11:50:55 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, numpy
, pandas
, python
2019-04-18 21:26:09 -04:00
, isPy3k
2017-04-18 11:50:55 +02:00
}:
buildPythonPackage rec {
pname = "xarray";
2019-12-10 19:07:43 +01:00
version = "0.14.1";
2017-04-18 11:50:55 +02:00
src = fetchPypi {
inherit pname version;
2019-12-10 19:07:43 +01:00
sha256 = "04b2f4d24707b8871a7ffa37328d0a2de74e81bd30791c9608712612601abd23";
2017-04-18 11:50:55 +02:00
};
2017-12-31 14:14:52 +01:00
checkInputs = [ pytest ];
2017-04-18 11:50:55 +02:00
propagatedBuildInputs = [numpy pandas];
checkPhase = ''
2019-04-18 21:26:09 -04:00
pytest $out/${python.sitePackages}
2017-04-18 11:50:55 +02:00
'';
2017-12-31 14:14:52 +01:00
# There always seem to be broken tests...
doCheck = false;
disabled = !isPy3k;
2017-04-18 11:50:55 +02:00
meta = {
description = "N-D labeled arrays and datasets in Python";
homepage = https://github.com/pydata/xarray;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fridh ];
};
}