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

39 lines
728 B
Nix
Raw Normal View History

2017-04-18 11:50:55 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, numpy
, pandas
, python
2019-04-19 03:26:09 +02:00
, isPy3k
2017-04-18 11:50:55 +02:00
}:
buildPythonPackage rec {
pname = "xarray";
2020-02-06 10:21:04 +01:00
version = "0.15.0";
2017-04-18 11:50:55 +02:00
src = fetchPypi {
inherit pname version;
2020-02-06 10:21:04 +01:00
sha256 = "c72d160c970725201f769e80fb91cbad68d6ebf21d68fcc371385a6c950459c3";
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-19 03:26:09 +02: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";
2017-04-18 11:50:55 +02:00
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fridh ];
};
}