10 buildPythonPackage rec {
11 pname = "command-runner";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
19 repo = "command_runner";
21 hash = "sha256-rdbZtqNndtIxrLA90eWzR6dB8EyFrBALduBUkOVq4oE=";
24 build-system = [ setuptools ];
26 dependencies = [ psutil ];
28 # Tests are execute ping
29 # ping: socket: Operation not permitted
32 pythonImportsCheck = [ "command_runner" ];
35 homepage = "https://github.com/netinvent/command_runner";
37 Platform agnostic command execution, timed background jobs with live
38 stdout/stderr output capture, and UAC/sudo elevation
40 changelog = "https://github.com/netinvent/command_runner/releases/tag/v${version}";
41 license = licenses.bsd3;
42 maintainers = teams.wdz.members;