36 lines
695 B
Nix
36 lines
695 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytest
|
|
, numpy
|
|
, pandas
|
|
, python
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "xarray";
|
|
version = "0.10.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "6a1f2c5dc5f639f8343f70ed08d0afbb477a3867298ef38f0d9bf4aafa0fb750";
|
|
};
|
|
|
|
checkInputs = [ pytest ];
|
|
propagatedBuildInputs = [numpy pandas];
|
|
|
|
checkPhase = ''
|
|
py.test $out/${python.sitePackages}
|
|
'';
|
|
|
|
# There always seem to be broken tests...
|
|
doCheck = false;
|
|
|
|
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 ];
|
|
};
|
|
}
|