depot/third_party/nixpkgs/pkgs/development/python-modules/command_runner/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

24 lines
628 B
Nix

{ lib, buildPythonPackage, fetchPypi, psutil }:
buildPythonPackage rec {
pname = "command_runner";
version = "1.5.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-UIDzLLIm69W53jvS9M2LVclM+OqRYmLtvuXVAv54ltg=";
};
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;
};
}