1{ lib, buildPythonPackage, fetchPypi, psutil }: 2 3buildPythonPackage rec { 4 pname = "command_runner"; 5 version = "1.5.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "sha256-UIDzLLIm69W53jvS9M2LVclM+OqRYmLtvuXVAv54ltg="; 10 }; 11 12 propagatedBuildInputs = [ psutil ]; 13 14 meta = with lib; { 15 homepage = "https://github.com/netinvent/command_runner"; 16 description = '' 17 Platform agnostic command execution, timed background jobs with live 18 stdout/stderr output capture, and UAC/sudo elevation 19 ''; 20 license = licenses.bsd3; 21 maintainers = teams.wdz.members; 22 }; 23}