about summary refs log tree commit diff
path: root/pkgs/tools/security/netexec
diff options
context:
space:
mode:
authorThiago Kenji Okada <thiagokokada@gmail.com>2024-01-13 03:05:09 +0000
committerThiago Kenji Okada <thiagokokada@gmail.com>2024-01-23 12:53:58 +0000
commitee64dd74118c846c53eb528590105674848805bb (patch)
tree6bd086048cb0b7cb2bed6d5a56acc02fe858cdaa /pkgs/tools/security/netexec
parent29c1267fab998477c5d5719dce232381efe4b1d7 (diff)
netexec: remove some declared dependencies
Diffstat (limited to 'pkgs/tools/security/netexec')
-rw-r--r--pkgs/tools/security/netexec/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/tools/security/netexec/default.nix b/pkgs/tools/security/netexec/default.nix
index c94bfe4764f75..ed8ac330a11e5 100644
--- a/pkgs/tools/security/netexec/default.nix
+++ b/pkgs/tools/security/netexec/default.nix
@@ -84,6 +84,14 @@ python.pkgs.buildPythonApplication rec {
   version = "1.1.0";
   pyproject = true;
   pythonRelaxDeps = true;
+  pythonRemoveDeps = [
+    # Lint
+    "ruff"
+    # Windows only dependency
+    "pyreadline"
+    # Fail to detect dev version requirement
+    "neo4j"
+  ];
 
   src = fetchFromGitHub {
     owner = "Pennyw0rth";