nixpkgs/pkgs/development/python-modules/xarray/default.nix
R. RyanTM 47ca76def4 python37Packages.xarray: 0.11.3 -> 0.12.0
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

(cherry picked from commit 82e56d9332c1567535a231058a1379704101105b)
2019-04-07 13:46:29 +02:00

36 lines
683 B
Nix

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