about summary refs log tree commit diff
path: root/pkgs/development/python-modules/command-runner/default.nix
blob: fb8fd94f803085e0eebeb1485572a93553e2b0d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ 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;
  };
}