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

39 lines
728 B
Nix
Raw Normal View History

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