mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
Merge pull request #154622 from fabaff/faraday-agent-dispatcher
faraday-agent-dispatcher: init at 2.1.3
This commit is contained in:
commit
a3566ed7e6
69
pkgs/tools/security/faraday-agent-dispatcher/default.nix
Normal file
69
pkgs/tools/security/faraday-agent-dispatcher/default.nix
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, python3
|
||||||
|
}:
|
||||||
|
|
||||||
|
python3.pkgs.buildPythonApplication rec {
|
||||||
|
pname = "faraday-agent-dispatcher";
|
||||||
|
version = "2.1.3";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "infobyte";
|
||||||
|
repo = "faraday_agent_dispatcher";
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-lqCW1/wRXfN7C9c6TPvninueOgrhzNdjRJ9fuueMyH0=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
|
setuptools-scm
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
aiohttp
|
||||||
|
click
|
||||||
|
faraday-agent-parameters-types
|
||||||
|
faraday-plugins
|
||||||
|
itsdangerous
|
||||||
|
python-gvm
|
||||||
|
python-owasp-zap-v2-4
|
||||||
|
pyyaml
|
||||||
|
requests
|
||||||
|
syslog-rfc5424-formatter
|
||||||
|
websockets
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = with python3.pkgs; [
|
||||||
|
pytest-asyncio
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace setup.py \
|
||||||
|
--replace '"pytest-runner",' ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
preCheck = ''
|
||||||
|
export HOME=$(mktemp -d);
|
||||||
|
'';
|
||||||
|
|
||||||
|
disabledTests = [
|
||||||
|
"test_execute_agent"
|
||||||
|
];
|
||||||
|
|
||||||
|
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";
|
||||||
|
homepage = "https://github.com/infobyte/faraday_agent_dispatcher";
|
||||||
|
license = with licenses; [ gpl3Only ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -5337,6 +5337,8 @@ with pkgs;
|
|||||||
|
|
||||||
fabric-installer = callPackage ../tools/games/minecraft/fabric-installer { };
|
fabric-installer = callPackage ../tools/games/minecraft/fabric-installer { };
|
||||||
|
|
||||||
|
faraday-agent-dispatcher = callPackage ../tools/security/faraday-agent-dispatcher { };
|
||||||
|
|
||||||
faraday-cli = callPackage ../tools/security/faraday-cli { };
|
faraday-cli = callPackage ../tools/security/faraday-cli { };
|
||||||
|
|
||||||
fastlane = callPackage ../tools/admin/fastlane { };
|
fastlane = callPackage ../tools/admin/fastlane { };
|
||||||
|
Loading…
Reference in New Issue
Block a user