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

36 lines
683 B
Nix
Raw Normal View History

2017-04-18 11:50:55 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, numpy
, pandas
, python
}:
buildPythonPackage rec {
pname = "xarray";
version = "0.12.0";
2017-04-18 11:50:55 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "1wspvvp8hh9ar7pl6w1qhmakajsjsg4cm11pmi4a422jqmid0vw5";
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 = ''
py.test $out/${python.sitePackages}
'';
2017-12-31 14:14:52 +01:00
# There always seem to be broken tests...
doCheck = false;
2017-04-18 11:50:55 +02: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 ];
};
}