ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
80 lines
1.6 KiB
Nix
80 lines
1.6 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "faraday-agent-dispatcher";
|
|
version = "3.3.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "infobyte";
|
|
repo = "faraday_agent_dispatcher";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-rpi8S6pmei8MaACnfmOKFK+nNpljoMglu2uk75zvs9I=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace '"pytest-runner",' ""
|
|
'';
|
|
|
|
pythonRelaxDeps = [
|
|
"python-socketio"
|
|
];
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
pythonRelaxDepsHook
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
aiohttp
|
|
click
|
|
faraday-agent-parameters-types
|
|
faraday-plugins
|
|
itsdangerous
|
|
psutil
|
|
pytenable
|
|
python-gvm
|
|
python-owasp-zap-v2-4
|
|
python-socketio
|
|
pyyaml
|
|
requests
|
|
syslog-rfc5424-formatter
|
|
websockets
|
|
];
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d);
|
|
'';
|
|
|
|
disabledTests = [
|
|
"test_execute_agent"
|
|
"SSL"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Tests require a running Docker instance
|
|
"tests/plugins-docker/test_executors.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"faraday_agent_dispatcher"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Tool to send result from tools to the Faraday Platform";
|
|
mainProgram = "faraday-dispatcher";
|
|
homepage = "https://github.com/infobyte/faraday_agent_dispatcher";
|
|
changelog = "https://github.com/infobyte/faraday_agent_dispatcher/releases/tag/${version}";
|
|
license = with licenses; [ gpl3Only ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|