pythonPackages.dynd: disable on python2

tests fail on python2
This commit is contained in:
xeji 2018-04-11 13:11:56 +02:00
parent db872b1bc1
commit c307e5b0f3

View file

@ -8888,7 +8888,7 @@ in {
dynd = buildPythonPackage rec {
version = "0.7.2";
name = "dynd-${version}";
disabled = isPyPy;
disabled = isPyPy || !isPy3k; # tests fail on python2, 2018-04-11
src = pkgs.fetchFromGitHub {
owner = "libdynd";