Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 31 lines 658 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, mozdevice 5, mozfile 6, mozinfo 7, mozlog 8, mozprocess 9, mozprofile 10, mozcrash 11}: 12 13buildPythonPackage rec { 14 pname = "mozrunner"; 15 version = "7.0.2"; 16 17 src = fetchPypi { 18 inherit pname version; 19 sha256 = "8034898a36fece171b52e25792f64011e761e5aa694cd67fb6a19c12cb3fa978"; 20 }; 21 22 propagatedBuildInputs = [ mozdevice mozfile mozinfo mozlog mozprocess 23 mozprofile mozcrash ]; 24 25 meta = { 26 description = "Mozilla application start/stop helpers"; 27 homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase; 28 license = lib.licenses.mpl20; 29 maintainers = with lib.maintainers; [ raskin ]; 30 }; 31}