mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
34 lines
772 B
Nix
34 lines
772 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy3k
|
|
, mozprofile
|
|
, mozversion
|
|
, moztest
|
|
, manifestparser
|
|
, marionette_driver
|
|
, browsermob-proxy
|
|
, wptserve
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "marionette-harness";
|
|
version = "5.0.0";
|
|
disabled = isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "041cd779ae383fb5c56f2bb44824f4e80ba895febd9a3f21570ac274221c82e0";
|
|
};
|
|
|
|
propagatedBuildInputs = [ mozprofile mozversion browsermob-proxy moztest
|
|
wptserve manifestparser marionette_driver ];
|
|
|
|
meta = {
|
|
description = "Mozilla Marionette protocol test automation harness";
|
|
homepage = "https://developer.mozilla.org/en-US/docs/Mozilla/QA/Marionette";
|
|
license = lib.licenses.mpl20;
|
|
maintainers = with lib.maintainers; [ raskin ];
|
|
};
|
|
}
|