Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 33 lines 772 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5, mozprofile 6, mozversion 7, moztest 8, manifestparser 9, marionette_driver 10, browsermob-proxy 11, wptserve 12}: 13 14buildPythonPackage rec { 15 pname = "marionette-harness"; 16 version = "5.0.0"; 17 disabled = isPy3k; 18 19 src = fetchPypi { 20 inherit pname version; 21 sha256 = "041cd779ae383fb5c56f2bb44824f4e80ba895febd9a3f21570ac274221c82e0"; 22 }; 23 24 propagatedBuildInputs = [ mozprofile mozversion browsermob-proxy moztest 25 wptserve manifestparser marionette_driver ]; 26 27 meta = { 28 description = "Mozilla Marionette protocol test automation harness"; 29 homepage = https://developer.mozilla.org/en-US/docs/Mozilla/QA/Marionette; 30 license = lib.licenses.mpl20; 31 maintainers = with lib.maintainers; [ raskin ]; 32 }; 33}