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