python3Packages.wfuzz: set meta.mainProgram

The package installs four console scripts (wfuzz, wfpayload, wfencode,
wxfuzz) and is exposed at the top level via toPythonApplication, so
lib.getExe and `nix run` need an explicit primary binary to avoid the
default-pname fallback warning.
This commit is contained in:
Bad3r
2026-05-04 22:58:58 +03:00
parent 03f3a96d7a
commit 0135f54023
@@ -85,5 +85,6 @@ buildPythonPackage (finalAttrs: {
homepage = "https://wfuzz.readthedocs.io";
license = with lib.licenses; [ gpl2Only ];
maintainers = with lib.maintainers; [ pamplemousse ];
mainProgram = "wfuzz";
};
})