python.pkgs.mozlog: disable for python3

not yet compatible according to upstream

+4 -1
+4 -1
pkgs/development/python-modules/marionette-harness/mozlog.nix
··· 2 2 , stdenv 3 3 , buildPythonPackage 4 4 , fetchPypi 5 + , isPy3k 5 6 , blessings 6 7 , mozfile 7 8 }: ··· 11 12 version = "3.4"; 12 13 name = "${pname}-${version}"; 13 14 15 + disabled = isPy3k; 16 + 14 17 src = fetchPypi { 15 18 inherit pname version; 16 19 sha256 = "1m4d9i1kzcmkhipfd5czv05f2s84j1byx3cv4y2irjmwq5v6cyiq"; 17 20 }; 18 21 19 - propagatedBuildInputs = [ blessings mozfile ]; 22 + propagatedBuildInputs = [ blessings mozfile ]; 20 23 21 24 meta = { 22 25 description = "Mozilla logging library";