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

39 lines
726 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";
2020-02-06 01:21:04 -08:00
version = "0.15.0";
2017-04-18 02:50:55 -07:00
src = fetchPypi {
inherit pname version;
2020-02-06 01:21:04 -08:00
sha256 = "c72d160c970725201f769e80fb91cbad68d6ebf21d68fcc371385a6c950459c3";
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;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fridh ];
};
}