e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
24 lines
628 B
Nix
24 lines
628 B
Nix
{ lib, buildPythonPackage, fetchPypi, psutil }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "command_runner";
|
|
version = "1.5.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-jzTckxDQxY8nIvQE3l0RTfpOH8RVIylS3YN3izr7Ns8=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|