depot/third_party/nixpkgs/pkgs/tools/security/snallygaster/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

38 lines
820 B
Nix

{ lib
, python3Packages
, fetchFromGitHub
}:
python3Packages.buildPythonApplication rec {
pname = "snallygaster";
version = "0.0.12";
src = fetchFromGitHub {
owner = "hannob";
repo = pname;
rev = "v${version}";
sha256 = "sha256-JXuRCUWpoGhBbU38XMEQovCiVfbyBMJ+SIrt3iqFuAo=";
};
propagatedBuildInputs = with python3Packages; [
urllib3
beautifulsoup4
dnspython
];
nativeCheckInputs = 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; [ ];
};
}