Merge branch 'master' into staging
There were some conflicts in python modules, commented at #28314.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
, mozfile
|
||||
}:
|
||||
|
||||
@@ -15,12 +15,14 @@ buildPythonPackage rec {
|
||||
sha256 = "1jwhnhbj7xipwh33wf7m12pw5g662dpr1chkp6p2fmy0mwpn2y4z";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ mozfile ];
|
||||
disabled = isPy3k;
|
||||
|
||||
meta = {
|
||||
propagatedBuildInputs = [ mozfile ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "System information utilities for Mozilla testing";
|
||||
homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase;
|
||||
license = lib.licenses.mpl20;
|
||||
maintainers = with lib.maintainers; [ raskin ];
|
||||
license = licenses.mpl20;
|
||||
maintainers = with maintainers; [ raskin ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user