nixpkgs/pkgs/development/python-modules/xarray/default.nix
R. RyanTM 7951d61ac2 python37Packages.xarray: 0.11.2 -> 0.11.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-xarray/versions
2019-02-08 15:57:15 +01:00

36 lines
683 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, numpy
, pandas
, python
}:
buildPythonPackage rec {
pname = "xarray";
version = "0.11.3";
src = fetchPypi {
inherit pname version;
sha256 = "1pc4p7yxvmhn3x121wgslwclaqnjlx51wxs6ihb4cxynh2vcwgfc";
};
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 ];
};
}