depot/third_party/nixpkgs/pkgs/tools/security/graphw00f/default.nix
Default email 889482aab3 Project import generated by Copybara.
GitOrigin-RevId: f2537a505d45c31fe5d9c27ea9829b6f4c4e6ac5
2022-06-26 12:26:21 +02:00

37 lines
845 B
Nix

{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "graphw00f";
version = "1.1.2";
format = "other";
src = fetchFromGitHub {
owner = "dolevf";
repo = pname;
rev = version;
hash = "sha256-DzpSbaGYtRXtRjZBn9rgZumuCqdZ/auKiWO5/TYIE34=";
};
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";
homepage = "https://github.com/dolevf/graphw00f";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};
}