2023-10-19 13:55:26 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, psutil }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "command_runner";
|
2024-01-13 08:15:51 +00:00
|
|
|
version = "1.5.2";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2023-10-19 13:55:26 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2024-01-13 08:15:51 +00:00
|
|
|
sha256 = "sha256-jzTckxDQxY8nIvQE3l0RTfpOH8RVIylS3YN3izr7Ns8=";
|
2023-10-19 13:55:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ psutil ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/netinvent/command_runner";
|
|
|
|
description = ''
|
|
|
|
Platform agnostic command execution, timed background jobs with live
|
|
|
|
stdout/stderr output capture, and UAC/sudo elevation
|
|
|
|
'';
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = teams.wdz.members;
|
|
|
|
};
|
|
|
|
}
|