Merge pull request #150316 from fabaff/migrate-wafw00f

wafw00f: migrate to new Python app style
This commit is contained in:
Pavol Rusnak 2022-01-05 16:49:43 +01:00 committed by GitHub
commit 01af747827
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 7 deletions

View file

@ -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)";

View file

@ -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 { };