Loading pkgs/development/python-modules/command_runner/default.nix 0 → 100644 +23 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchPypi, psutil }: buildPythonPackage rec { pname = "command_runner"; version = "1.5.0"; 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; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -1850,6 +1850,8 @@ self: super: with self; { comicon = callPackage ../development/python-modules/comicon { }; command_runner = callPackage ../development/python-modules/command_runner { }; connect-box = callPackage ../development/python-modules/connect_box { }; connection-pool = callPackage ../development/python-modules/connection-pool { }; Loading Loading
pkgs/development/python-modules/command_runner/default.nix 0 → 100644 +23 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchPypi, psutil }: buildPythonPackage rec { pname = "command_runner"; version = "1.5.0"; 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; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -1850,6 +1850,8 @@ self: super: with self; { comicon = callPackage ../development/python-modules/comicon { }; command_runner = callPackage ../development/python-modules/command_runner { }; connect-box = callPackage ../development/python-modules/connect_box { }; connection-pool = callPackage ../development/python-modules/connection-pool { }; Loading