depot/third_party/nixpkgs/pkgs/tools/security/graphw00f/default.nix
Default email 83627f9931 Project import generated by Copybara.
GitOrigin-RevId: 2893f56de08021cffd9b6b6dfc70fd9ccd51eb60
2024-06-24 14:47:55 -04:00

38 lines
892 B
Nix

{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "graphw00f";
version = "1.1.17";
format = "other";
src = fetchFromGitHub {
owner = "dolevf";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-VeTFwn4PANGoW2Cb/IJ1KJb4YkjjDpaU7DLv0YwRwDU=";
};
propagatedBuildInputs = with python3.pkgs; [
requests
];
installPhase = ''
runHook preInstall
install -vD main.py $out/bin/graphw00f
install -vD {conf,version}.py -t $out/${python3.sitePackages}/
install -vD graphw00f/* -t $out/${python3.sitePackages}/graphw00f
runHook postInstall
'';
meta = with lib; {
description = "GraphQL Server Engine Fingerprinting utility";
mainProgram = "graphw00f";
homepage = "https://github.com/dolevf/graphw00f";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};
}