about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2024-03-28 12:14:09 +0100
committerGitHub <noreply@github.com>2024-03-28 12:14:09 +0100
commit3dedc962bd20556a0d839bf4baeaeae72976cc39 (patch)
treef3ca0e41deb1499c1639b902fc11b495d27e0dd7 /pkgs/tools
parent222ad9c6696f6b1e08f12bf76f01fa01b9354c6a (diff)
parentea2c0f9e1319b6555de388c9a3f337758d0339fa (diff)
Merge pull request #299709 from fabaff/knockpy-fix
knockpy: relax pyopenssl
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/knockpy/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/security/knockpy/default.nix b/pkgs/tools/security/knockpy/default.nix
index 6d4e80ec98c23..169165067c93d 100644
--- a/pkgs/tools/security/knockpy/default.nix
+++ b/pkgs/tools/security/knockpy/default.nix
@@ -18,15 +18,16 @@ python3.pkgs.buildPythonApplication rec {
   pythonRelaxDeps = [
     "beautifulsoup4"
     "dnspython"
+    "pyopenssl"
     "tqdm"
   ];
 
-  nativeBuildInputs = with python3.pkgs; [
+  build-system = with python3.pkgs; [
     pythonRelaxDepsHook
     setuptools
   ];
 
-  propagatedBuildInputs = with python3.pkgs; [
+  dependencies = with python3.pkgs; [
     beautifulsoup4
     dnspython
     pyopenssl
@@ -43,10 +44,10 @@ python3.pkgs.buildPythonApplication rec {
 
   meta = with lib; {
     description = "Tool to scan subdomains";
-    mainProgram = "knockpy";
     homepage = "https://github.com/guelfoweb/knock";
     changelog = "https://github.com/guelfoweb/knock/releases/tag/${version}";
     license = with licenses; [ gpl3Only ];
     maintainers = with maintainers; [ fab ];
+    mainProgram = "knockpy";
   };
 }