knockpy: refactor

This commit is contained in:
Fabian Affolter 2024-03-28 10:37:14 +01:00
parent 4f28c0b741
commit 5d056b548a

View File

@ -21,12 +21,12 @@ python3.pkgs.buildPythonApplication rec {
"tqdm" "tqdm"
]; ];
nativeBuildInputs = with python3.pkgs; [ build-system = with python3.pkgs; [
pythonRelaxDepsHook pythonRelaxDepsHook
setuptools setuptools
]; ];
propagatedBuildInputs = with python3.pkgs; [ dependencies = with python3.pkgs; [
beautifulsoup4 beautifulsoup4
dnspython dnspython
pyopenssl pyopenssl
@ -43,10 +43,10 @@ python3.pkgs.buildPythonApplication rec {
meta = with lib; { meta = with lib; {
description = "Tool to scan subdomains"; description = "Tool to scan subdomains";
mainProgram = "knockpy";
homepage = "https://github.com/guelfoweb/knock"; homepage = "https://github.com/guelfoweb/knock";
changelog = "https://github.com/guelfoweb/knock/releases/tag/${version}"; changelog = "https://github.com/guelfoweb/knock/releases/tag/${version}";
license = with licenses; [ gpl3Only ]; license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
mainProgram = "knockpy";
}; };
} }