about summary refs log tree commit diff
path: root/pkgs/development/python-modules/marionette-harness/mozrunner.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/marionette-harness/mozrunner.nix')
-rw-r--r--pkgs/development/python-modules/marionette-harness/mozrunner.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/marionette-harness/mozrunner.nix b/pkgs/development/python-modules/marionette-harness/mozrunner.nix
new file mode 100644
index 000000000000..20942955c4c7
--- /dev/null
+++ b/pkgs/development/python-modules/marionette-harness/mozrunner.nix
@@ -0,0 +1,33 @@
+{ lib
+, stdenv
+, buildPythonPackage
+, fetchPypi
+, mozdevice
+, mozfile
+, mozinfo
+, mozlog
+, mozprocess
+, mozprofile
+, mozcrash
+}:
+
+buildPythonPackage rec {
+  pname = "mozrunner";
+  version = "6.13";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1d5k3a0w1iyyk6l28l65j47grq87zd207h369x4vahq02nrx2g6l";
+  };
+
+  propagatedBuildInputs = [ mozdevice mozfile mozinfo mozlog mozprocess
+    mozprofile mozcrash ];
+
+  meta = {
+    description = "Mozilla application start/stop helpers";
+    homepage = "https://wiki.mozilla.org/Auto-tools/Projects/Mozbase";
+    license = lib.licenses.mpl20;
+    maintainers = with lib.maintainers; [ raskin ];
+  };
+}