python.pkgs.mozlog: disable for python3
not yet compatible according to upstream
This commit is contained in:
parent
18036996a5
commit
96ef0dc776
@ -2,6 +2,7 @@
|
||||
, stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
, blessings
|
||||
, mozfile
|
||||
}:
|
||||
@ -11,12 +12,14 @@ buildPythonPackage rec {
|
||||
version = "3.4";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
disabled = isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1m4d9i1kzcmkhipfd5czv05f2s84j1byx3cv4y2irjmwq5v6cyiq";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ blessings mozfile ];
|
||||
propagatedBuildInputs = [ blessings mozfile ];
|
||||
|
||||
meta = {
|
||||
description = "Mozilla logging library";
|
||||
|
Loading…
Reference in New Issue
Block a user