3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/xarray/default.nix

35 lines
731 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
2021-03-22 13:33:25 +00:00
, setuptools-scm
2017-04-18 10:50:55 +01:00
}:
buildPythonPackage rec {
pname = "xarray";
version = "0.17.0";
disabled = !isPy3k;
2017-04-18 10:50:55 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "9c2edad2a4e588f9117c666a4249920b9717fb75703b96998cf65fcd4f60551f";
2017-04-18 10:50:55 +01:00
};
2021-03-22 13:33:25 +00:00
nativeBuildInputs = [ setuptools-scm ];
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 ];
};
}