depot/third_party/nixpkgs/pkgs/development/python-modules/command-runner/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

45 lines
1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
psutil,
pytestCheckHook,
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;
};
}