marionette-harness: init at 4.4.0
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, blessings
|
||||
, mozfile
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mozlog";
|
||||
version = "3.4";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1m4d9i1kzcmkhipfd5czv05f2s84j1byx3cv4y2irjmwq5v6cyiq";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ blessings mozfile ];
|
||||
|
||||
meta = {
|
||||
description = "Mozilla logging library";
|
||||
homepage = "https://wiki.mozilla.org/Auto-tools/Projects/Mozbase";
|
||||
license = lib.licenses.mpl20;
|
||||
maintainers = with lib.maintainers; [ raskin ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user