mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
40 lines
836 B
Nix
40 lines
836 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";
|
|
mainProgram = "snallygaster";
|
|
homepage = "https://github.com/hannob/snallygaster";
|
|
license = licenses.cc0;
|
|
maintainers = [ ];
|
|
};
|
|
}
|