summary refs log blame commit diff
path: root/pkgs/development/python-modules/wfuzz/default.nix
blob: a43aa915ea0ba24e1b4120a5dc05e00fe62c8b26 (plain) (tree)


















































                                                                                   
{ buildPythonPackage
, chardet
, configparser
, fetchFromGitHub
, future
, isPy27
, lib
, mock
, netaddr
, pkgs
, pyparsing
, pycurl
, pytest
, six
}:

buildPythonPackage rec {
  pname = "wfuzz";
  version = "2.4.2";

  src = fetchFromGitHub {
    owner = "xmendez";
    repo = pname;
    rev = "v.${version}";
    sha256 = "15dihrc7jsvpxcmb4fp254s633mkjm7ksjfkr9pqaai49qmnddyf";
  };

  buildInputs = [ pyparsing configparser ];

  propagatedBuildInputs = [
    chardet
    future
    pycurl
    six
  ];

  checkInputs = [ netaddr pytest ] ++ lib.optionals isPy27 [ mock ];

  # Skip tests requiring a local web server.
  checkPhase = ''
    HOME=$TMPDIR pytest \
      tests/test_{moduleman,filterintro,reqresp,api,clparser,dotdict}.py
  '';

  meta = with lib; {
    description = "Web content fuzzer, to facilitate web applications assessments";
    homepage = "https://wfuzz.readthedocs.io";
    license = licenses.gpl2;
    maintainers = with maintainers; [ pamplemousse ];
  };
}