Merge pull request #150316 from fabaff/migrate-wafw00f
wafw00f: migrate to new Python app style
This commit is contained in:
commit
01af747827
2 changed files with 9 additions and 7 deletions
|
@ -1,13 +1,12 @@
|
|||
{ lib
|
||||
, buildPythonApplication
|
||||
, fetchFromGitHub
|
||||
, pluginbase
|
||||
, requests
|
||||
, python3
|
||||
}:
|
||||
|
||||
buildPythonApplication rec {
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "wafw00f";
|
||||
version = "2.1.0";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "EnableSecurity";
|
||||
|
@ -16,14 +15,17 @@ buildPythonApplication rec {
|
|||
sha256 = "0526kz6ypww9nxc2vddkhpn1gqvn25mzj3wmi91wwxwxjjb6w4qj";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
requests
|
||||
pluginbase
|
||||
];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "wafw00f" ];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"wafw00f"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tool to identify and fingerprint Web Application Firewalls (WAF)";
|
||||
|
|
|
@ -29369,7 +29369,7 @@ with pkgs;
|
|||
|
||||
wad = callPackage ../tools/security/wad { };
|
||||
|
||||
wafw00f = python3Packages.callPackage ../tools/security/wafw00f { };
|
||||
wafw00f = callPackage ../tools/security/wafw00f { };
|
||||
|
||||
whispers = callPackage ../tools/security/whispers { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue