python3Packages.wfuzz: modernize

This commit is contained in:
Martin Joerg
2026-03-02 08:50:27 +00:00
parent 7177a0807c
commit 13286f562f
@@ -16,7 +16,7 @@
legacy-cgi,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "wfuzz";
version = "3.1.1";
pyproject = true;
@@ -24,7 +24,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "xmendez";
repo = "wfuzz";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-OYMZHo0ujRzwOcE+EKRNPxffxVbbiMHe+AqBz7q/u2A=";
};
@@ -75,7 +75,7 @@ buildPythonPackage rec {
'';
meta = {
changelog = "https://github.com/xmendez/wfuzz/releases/tag/${src.tag}";
changelog = "https://github.com/xmendez/wfuzz/releases/tag/${finalAttrs.src.tag}";
description = "Web content fuzzer to facilitate web applications assessments";
longDescription = ''
Wfuzz provides a framework to automate web applications security assessments
@@ -86,4 +86,4 @@ buildPythonPackage rec {
license = with lib.licenses; [ gpl2Only ];
maintainers = with lib.maintainers; [ pamplemousse ];
};
}
})