python.pkgs.mozinfo: python3 is not supported

This commit is contained in:
Jörg Thalheim 2017-08-28 09:13:20 +01:00
parent b24099cb17
commit 861048c15f

View File

@ -1,7 +1,7 @@
{ lib { stdenv
, stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isPy3k
, mozfile , mozfile
}: }:
@ -15,9 +15,11 @@ buildPythonPackage rec {
sha256 = "1jwhnhbj7xipwh33wf7m12pw5g662dpr1chkp6p2fmy0mwpn2y4z"; sha256 = "1jwhnhbj7xipwh33wf7m12pw5g662dpr1chkp6p2fmy0mwpn2y4z";
}; };
disabled = isPy3k;
propagatedBuildInputs = [ mozfile ]; propagatedBuildInputs = [ mozfile ];
meta = { meta = with stdenv.lib; {
description = "System information utilities for Mozilla testing"; description = "System information utilities for Mozilla testing";
homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase; homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase;
license = lib.licenses.mpl20; license = lib.licenses.mpl20;