3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.xarray: 0.6.1 -> 0.7.0

Note that xray has been renamed to xarray.
This commit is contained in:
Frederik Rietdijk 2016-01-22 13:57:06 +01:00
parent 569acd33e5
commit bb16c26538

View file

@ -20979,21 +20979,21 @@ in modules // {
};
});
xray = buildPythonPackage rec {
name = "xray-${version}";
version = "0.6.1";
xarray = buildPythonPackage rec {
name = "xarray-${version}";
version = "0.7.0";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/x/xray/${name}.tar.gz";
sha256 = "bfbc307203d5433b4da31c210773c8474c237ff97350874b6e436d452fb9dfc8";
url = "https://pypi.python.org/packages/source/x/xarray/${name}.tar.gz";
sha256 = "b1562e8e2c61f1c3587d557ff48d2bc7be36574d6a8e86f11186c356bdd794cf";
};
buildInputs = with self; [nose];
buildInputs = with self; [ pytest ];
propagatedBuildInputs = with self; [numpy pandas];
meta = {
description = "N-D labeled arrays and datasets in Python";
homepage = https://github.com/xray/xray;
homepage = https://github.com/pydata/xarray;
license = licenses.asl20;
maintainers = with maintainers; [ fridh ];
};