python.pkgs.xarray: disable for python 2

0.12 no longer supports Python 2.
This commit is contained in:
Frederik Rietdijk 2019-04-18 09:19:07 +02:00
parent 8ae35163f7
commit 0e998197cb

View File

@ -26,6 +26,8 @@ buildPythonPackage rec {
# There always seem to be broken tests... # There always seem to be broken tests...
doCheck = false; doCheck = false;
disabled = !isPy3k;
meta = { meta = {
description = "N-D labeled arrays and datasets in Python"; description = "N-D labeled arrays and datasets in Python";
homepage = https://github.com/pydata/xarray; homepage = https://github.com/pydata/xarray;