about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/marionette-harness/mozrunner.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/marionette-harness/mozrunner.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/marionette-harness/mozrunner.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/marionette-harness/mozrunner.nix b/nixpkgs/pkgs/development/python-modules/marionette-harness/mozrunner.nix
new file mode 100644
index 000000000000..ac8631362fb8
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/marionette-harness/mozrunner.nix
@@ -0,0 +1,31 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, mozdevice
+, mozfile
+, mozinfo
+, mozlog
+, mozprocess
+, mozprofile
+, mozcrash
+}:
+
+buildPythonPackage rec {
+  pname = "mozrunner";
+  version = "7.0.2";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "8034898a36fece171b52e25792f64011e761e5aa694cd67fb6a19c12cb3fa978";
+  };
+
+  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 ];
+  };
+}