aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/marionette-harness/moztest.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/marionette-harness/moztest.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/marionette-harness/moztest.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/marionette-harness/moztest.nix b/nixpkgs/pkgs/development/python-modules/marionette-harness/moztest.nix
new file mode 100644
index 00000000000..2ff50e1fa92
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/marionette-harness/moztest.nix
@@ -0,0 +1,24 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, mozinfo
+}:
+
+buildPythonPackage rec {
+ pname = "moztest";
+ version = "0.8";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1pg9pqq4xnn14k1jqbyqg81zag2v66y725537v6hixi41yiqkdas";
+ };
+
+ propagatedBuildInputs = [ mozinfo ];
+
+ meta = {
+ description = "Mozilla test result storage and output";
+ homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase;
+ license = lib.licenses.mpl20;
+ maintainers = with lib.maintainers; [ raskin ];
+ };
+}