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

32 lines
658 B
Nix
Raw Normal View History

2017-05-21 18:28:30 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, mozdevice
, mozfile
, mozinfo
, mozlog
, mozprocess
, mozprofile
, mozcrash
}:
buildPythonPackage rec {
pname = "mozrunner";
2019-10-24 07:47:38 +01:00
version = "7.6.0";
2017-05-21 18:28:30 +01:00
src = fetchPypi {
inherit pname version;
2019-10-24 07:47:38 +01:00
sha256 = "0ae84147f0fd784daa32c1d74f94b6e384967831aaf0c635bb3d9d0af3c4b112";
2017-05-21 18:28:30 +01:00
};
propagatedBuildInputs = [ mozdevice mozfile mozinfo mozlog mozprocess
mozprofile mozcrash ];
meta = {
description = "Mozilla application start/stop helpers";
homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase;
2017-05-21 18:28:30 +01:00
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ raskin ];
};
}