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>2024-01-16 10:30:09 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2024-01-16 10:30:09 +0100
commit270eaedc61b015973a3c66845ea2f79c52296f41 (patch)
tree9ce0eecf9cff1be7bd7f1b52f01e29ac9537d880 /pkgs/tools/security/faraday-agent-dispatcher
parente7f5fc51be81954b0d219a541698e700d9989349 (diff)
downloadnixlib-270eaedc61b015973a3c66845ea2f79c52296f41.tar
nixlib-270eaedc61b015973a3c66845ea2f79c52296f41.tar.gz
nixlib-270eaedc61b015973a3c66845ea2f79c52296f41.tar.bz2
nixlib-270eaedc61b015973a3c66845ea2f79c52296f41.tar.lz
nixlib-270eaedc61b015973a3c66845ea2f79c52296f41.tar.xz
nixlib-270eaedc61b015973a3c66845ea2f79c52296f41.tar.zst
nixlib-270eaedc61b015973a3c66845ea2f79c52296f41.zip
faraday-agent-dispatcher: 2.6.2 -> 3.0.1
Diff: https://github.com/infobyte/faraday_agent_dispatcher/compare/refs/tags/2.6.2...3.0.1

Changelog: https://github.com/infobyte/faraday_agent_dispatcher/releases/tag/3.0.1
Diffstat (limited to 'pkgs/tools/security/faraday-agent-dispatcher')
-rw-r--r--pkgs/tools/security/faraday-agent-dispatcher/default.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/pkgs/tools/security/faraday-agent-dispatcher/default.nix b/pkgs/tools/security/faraday-agent-dispatcher/default.nix
index 39f9398260f1..44cf92318235 100644
--- a/pkgs/tools/security/faraday-agent-dispatcher/default.nix
+++ b/pkgs/tools/security/faraday-agent-dispatcher/default.nix
@@ -5,14 +5,14 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "faraday-agent-dispatcher";
-  version = "2.6.2";
-  format = "setuptools";
+  version = "3.0.1";
+  pyproject = true;
 
   src = fetchFromGitHub {
     owner = "infobyte";
     repo = "faraday_agent_dispatcher";
     rev = "refs/tags/${version}";
-    hash = "sha256-+lsejepg/iBHo6CRAGNHjiUC7ZgboHbKu7EDmlN3lVk=";
+    hash = "sha256-QCxYqLZAPrhcKAFguWT2ygN/OMe2Tr7HtnMx4Kp2bGM=";
   };
 
   postPatch = ''
@@ -20,7 +20,12 @@ python3.pkgs.buildPythonApplication rec {
       --replace '"pytest-runner",' ""
   '';
 
+  pythonRelaxDeps = [
+    "python-socketio"
+  ];
+
   nativeBuildInputs = with python3.pkgs; [
+    pythonRelaxDepsHook
     setuptools-scm
   ];
 
@@ -34,6 +39,7 @@ python3.pkgs.buildPythonApplication rec {
     pytenable
     python-gvm
     python-owasp-zap-v2-4
+    python-socketio
     pyyaml
     requests
     syslog-rfc5424-formatter