depot/third_party/nixpkgs/pkgs/development/python-modules/command-runner/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

44 lines
1,014 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
psutil,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "command-runner";
version = "1.6.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "netinvent";
repo = "command_runner";
rev = "refs/tags/v${version}";
hash = "sha256-QzqkcF2/YExK/dz+b0Uk0Af/rAXRMuRIeEynyFgDql8=";
};
build-system = [ setuptools ];
dependencies = [ psutil ];
# Tests are execute ping
# ping: socket: Operation not permitted
doCheck = false;
pythonImportsCheck = [ "command_runner" ];
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
'';
changelog = "https://github.com/netinvent/command_runner/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = teams.wdz.members;
};
}