websecprobe: refactor

This commit is contained in:
Fabian Affolter 2024-03-23 13:03:07 +01:00 committed by GitHub
parent a889db868f
commit 05c0c61b2b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,11 +14,11 @@ python3.pkgs.buildPythonApplication rec {
hash = "sha256-RX4tc6JaUVaNx8nidn8eMcbsmbcSY+VZbup6c6P7oOs="; hash = "sha256-RX4tc6JaUVaNx8nidn8eMcbsmbcSY+VZbup6c6P7oOs=";
}; };
nativeBuildInputs = with python3.pkgs; [ build-system = with python3.pkgs; [
setuptools setuptools
]; ];
propagatedBuildInputs = with python3.pkgs; [ dependencies = with python3.pkgs; [
requests requests
tabulate tabulate
]; ];
@ -34,6 +34,7 @@ python3.pkgs.buildPythonApplication rec {
meta = with lib; { meta = with lib; {
description = "Web Security Assessment Tool"; description = "Web Security Assessment Tool";
homepage = "https://github.com/spyboy-productions/WebSecProbe/"; homepage = "https://github.com/spyboy-productions/WebSecProbe/";
changelog = "https://github.com/spyboy-productions/WebSecProbe/releases/tag/${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
mainProgram = "websecprobe"; mainProgram = "websecprobe";