nixpkgs/pkgs/development/python-modules/xarray/default.nix

39 lines
726 B
Nix
Raw Normal View History

2017-04-18 10:50:55 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, numpy
, pandas
, python
2019-04-19 02:26:09 +01:00
, isPy3k
2017-04-18 10:50:55 +01:00
}:
buildPythonPackage rec {
pname = "xarray";
2019-10-16 16:00:51 +01:00
version = "0.14.0";
2017-04-18 10:50:55 +01:00
src = fetchPypi {
inherit pname version;
2019-10-16 16:00:51 +01:00
sha256 = "a8b93e1b0af27fa7de199a2d36933f1f5acc9854783646b0f1b37fed9b4da091";
2017-04-18 10:50:55 +01:00
};
2017-12-31 13:14:52 +00:00
checkInputs = [ pytest ];
2017-04-18 10:50:55 +01:00
propagatedBuildInputs = [numpy pandas];
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;
disabled = !isPy3k;
2017-04-18 10:50:55 +01: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 ];
};
}