nixpkgs/pkgs/development/python-modules/xarray/default.nix
2019-07-21 08:38:23 +02:00

39 lines
726 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, numpy
, pandas
, python
, isPy3k
}:
buildPythonPackage rec {
pname = "xarray";
version = "0.12.3";
src = fetchPypi {
inherit pname version;
sha256 = "9310e610af988acb57a2627b10025a250bcbe172e66d3750a6dd3b3c5357da56";
};
checkInputs = [ pytest ];
propagatedBuildInputs = [numpy pandas];
checkPhase = ''
pytest $out/${python.sitePackages}
'';
# There always seem to be broken tests...
doCheck = false;
disabled = !isPy3k;
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 ];
};
}