21 buildPythonPackage rec {
25 src = fetchFromGitHub {
29 sha256 = "1izasczm2zwknwzxbfzqhlf4zp02jvb54ha1hfk4rlwiz0rr1kj4";
32 propagatedBuildInputs = [
38 ] ++ lib.optionals isPy27 [
41 ] ++ lib.optionals stdenv.hostPlatform.isWindows [
49 ] ++ lib.optionals isPy27 [
53 preCheck = "export HOME=$(mktemp -d)";
54 # The skipped tests are requiring a local web server
55 pytestFlagsArray = [ "tests/test_{moduleman,filterintro,reqresp,api,clparser}.py" ];
56 pythonImportsCheck = [ "wfuzz" ];
59 description = "Web content fuzzer to facilitate web applications assessments";
61 Wfuzz provides a framework to automate web applications security assessments
62 and could help you to secure your web applications by finding and exploiting
63 web application vulnerabilities.
65 homepage = "https://wfuzz.readthedocs.io";
66 license = with licenses; [ gpl2Only ];
67 maintainers = with maintainers; [ pamplemousse ];