marionette-harness: init at 4.4.0

This commit is contained in:
Michael Raskin
2017-05-21 19:29:20 +02:00
parent c1894bef7a
commit daa65527c6
18 changed files with 483 additions and 0 deletions
@@ -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 ];
};
}