depot/third_party/nixpkgs/pkgs/development/python-modules/command-runner/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

25 lines
652 B
Nix

{ lib, buildPythonPackage, fetchPypi, psutil }:
buildPythonPackage rec {
pname = "command-runner";
version = "1.6.0";
format = "setuptools";
src = fetchPypi {
pname = "command_runner";
inherit version;
sha256 = "sha256-lzt1UhhrPqQrBKsRmPhqhtOIfFlCteQqo6sZ6rOut0A=";
};
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;
};
}