about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorocfox <i@ocfox.me>2024-02-10 22:51:10 +0800
committerocfox <i@ocfox.me>2024-02-10 23:59:33 +0800
commitcedf7701560125c5ac964885d59982c7305ad362 (patch)
tree57e61c4a15f193afe9c7be9fb8392de66d35954f /pkgs/tools
parentc65ffe3f171d721f017b3397f9fcbc00e091f242 (diff)
quark-engine: fix build
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/quark-engine/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/tools/security/quark-engine/default.nix b/pkgs/tools/security/quark-engine/default.nix
index 980842f1b8095..1e9cf9168aed0 100644
--- a/pkgs/tools/security/quark-engine/default.nix
+++ b/pkgs/tools/security/quark-engine/default.nix
@@ -18,6 +18,7 @@ python3.pkgs.buildPythonApplication rec {
 
   nativeBuildInputs = with python3.pkgs; [
     setuptools
+    pythonRelaxDepsHook
   ];
 
   propagatedBuildInputs = with python3.pkgs; [
@@ -36,6 +37,10 @@ python3.pkgs.buildPythonApplication rec {
     tqdm
   ];
 
+  pythonRelaxDeps = [
+    "r2pipe"
+  ];
+
   # Project has no tests
   doCheck = false;