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
, mozversion
, mozrunner
}:
buildPythonPackage rec {
pname = "marionette_driver";
version = "2.2.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0phlb4r6xf3yv1z23kn6paxkq6fvfywj2h4gcbavg4w6jd63vd5z";
};
propagatedBuildInputs = [ mozversion mozrunner ];
meta = {
description = "Mozilla Marionette driver";
homepage = "https://wiki.mozilla.org/Auto-tools/Projects/Marionette";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ raskin ];
};
}