Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / command-runner / default.nix
blobfb8fd94f803085e0eebeb1485572a93553e2b0d8
1 { lib, buildPythonPackage, fetchPypi, psutil }:
3 buildPythonPackage rec {
4   pname = "command-runner";
5   version = "1.6.0";
6   format = "setuptools";
8   src = fetchPypi {
9     pname = "command_runner";
10     inherit version;
11     sha256 = "sha256-lzt1UhhrPqQrBKsRmPhqhtOIfFlCteQqo6sZ6rOut0A=";
12   };
14   propagatedBuildInputs = [ psutil ];
16   meta = with lib; {
17     homepage = "https://github.com/netinvent/command_runner";
18     description = ''
19       Platform agnostic command execution, timed background jobs with live
20       stdout/stderr output capture, and UAC/sudo elevation
21     '';
22     license = licenses.bsd3;
23     maintainers = teams.wdz.members;
24   };