nixpkgs/pkgs/tools/security/snallygaster/default.nix
2021-06-19 23:33:08 +02:00

39 lines
820 B
Nix

{ lib
, python3Packages
, fetchFromGitHub
}:
python3Packages.buildPythonApplication rec {
pname = "snallygaster";
version = "0.0.10";
src = fetchFromGitHub {
owner = "hannob";
repo = pname;
rev = "v${version}";
sha256 = "1xd483sl94zhs7yhc52s0zrn3pj7vf5izggp4ap1d2j0lbwwcyka";
};
propagatedBuildInputs = with python3Packages; [
urllib3
beautifulsoup4
dnspython
];
checkInputs = with python3Packages; [
pytestCheckHook
];
pytestFlagsArray = [
# we are not interested in linting the project
"--ignore=tests/test_codingstyle.py"
];
meta = with lib; {
description = "Tool to scan for secret files on HTTP servers";
homepage = "https://github.com/hannob/snallygaster";
license = licenses.cc0;
maintainers = with maintainers; [ hexa ];
};
}