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

33 lines
659 B
Nix
Raw Normal View History

2017-04-18 10:50:55 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
2017-04-18 10:50:55 +01:00
, numpy
, pandas
, setuptools
2019-04-19 02:26:09 +01:00
, isPy3k
2017-04-18 10:50:55 +01:00
}:
buildPythonPackage rec {
pname = "xarray";
version = "0.16.2";
disabled = !isPy3k;
2017-04-18 10:50:55 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-OOhDnWyRvNW3wPyjSdr44GQ6xohQyYcmLVNSbp19AeQ=";
2017-04-18 10:50:55 +01:00
};
propagatedBuildInputs = [ numpy pandas setuptools ];
checkInputs = [ pytestCheckHook ];
2017-04-18 10:50:55 +01:00
pythonImportsCheck = [ "xarray" ];
2017-04-18 10:50:55 +01:00
meta = {
description = "N-D labeled arrays and datasets in Python";
homepage = "https://github.com/pydata/xarray";
2017-04-18 10:50:55 +01:00
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fridh ];
};
}