nixpkgs/pkgs/development/python-modules/marionette-harness/marionette_driver.nix

28 lines
587 B
Nix
Raw Normal View History

2017-05-21 19:28:30 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
2017-05-21 19:28:30 +02:00
, mozversion
, mozrunner
}:
buildPythonPackage rec {
pname = "marionette_driver";
version = "3.0.0";
disabled = isPy3k;
2017-05-21 19:28:30 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "99ca2513d4e2ca29a08e550346f23947a50627a2b02f6ad36a4550e779fa0ce8";
2017-05-21 19:28:30 +02:00
};
propagatedBuildInputs = [ mozversion mozrunner ];
meta = {
description = "Mozilla Marionette driver";
homepage = https://wiki.mozilla.org/Auto-tools/Projects/Marionette;
2017-05-21 19:28:30 +02:00
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ raskin ];
};
}