nixpkgs/pkgs/tools/security/snallygaster/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

39 lines
825 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; [ hexa ];
};
}