about summary refs log tree commit diff
path: root/pkgs/tools/security/faraday-agent-dispatcher
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-01-11 18:59:26 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-01-11 18:59:26 +0100
commitceafd6f03035ed6c573bf2d090dc254929ed2145 (patch)
tree54c33e22c9e8d10b1b1a652cc67a111cadae4ef3 /pkgs/tools/security/faraday-agent-dispatcher
parent2d9eea6d7686476f666d45d4da088a3dfa846952 (diff)
downloadnixlib-ceafd6f03035ed6c573bf2d090dc254929ed2145.tar
nixlib-ceafd6f03035ed6c573bf2d090dc254929ed2145.tar.gz
nixlib-ceafd6f03035ed6c573bf2d090dc254929ed2145.tar.bz2
nixlib-ceafd6f03035ed6c573bf2d090dc254929ed2145.tar.lz
nixlib-ceafd6f03035ed6c573bf2d090dc254929ed2145.tar.xz
nixlib-ceafd6f03035ed6c573bf2d090dc254929ed2145.tar.zst
nixlib-ceafd6f03035ed6c573bf2d090dc254929ed2145.zip
faraday-agent-dispatcher: init at 2.1.3
Diffstat (limited to 'pkgs/tools/security/faraday-agent-dispatcher')
-rw-r--r--pkgs/tools/security/faraday-agent-dispatcher/default.nix69
1 files changed, 69 insertions, 0 deletions
diff --git a/pkgs/tools/security/faraday-agent-dispatcher/default.nix b/pkgs/tools/security/faraday-agent-dispatcher/default.nix
new file mode 100644
index 000000000000..aecdbf8dd250
--- /dev/null
+++ b/pkgs/tools/security/faraday-agent-dispatcher/default.nix
@@ -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 ];
+  };
+}