python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / graphw00f / default.nix
blobcaa7586d37f6b804f0f08c2fd27a8580e440d7af
1 { lib
2 , fetchFromGitHub
3 , python3
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "graphw00f";
8   version = "1.1.8";
9   format = "other";
11   src = fetchFromGitHub {
12     owner = "dolevf";
13     repo = pname;
14     rev = "refs/tags/${version}";
15     hash = "sha256-stTCUHt9UCu1QuxDPB8a26LsrHNttyoVd0tmS7e2t2Y=";
16   };
18   propagatedBuildInputs = with python3.pkgs; [
19     requests
20   ];
22   installPhase = ''
23     runHook preInstall
25     install -vD main.py $out/bin/graphw00f
26     install -vD {conf,version}.py -t $out/${python3.sitePackages}/
27     install -vD graphw00f/* -t $out/${python3.sitePackages}/graphw00f
29     runHook postInstall
30   '';
31   meta = with lib; {
32     description = "GraphQL Server Engine Fingerprinting utility";
33     homepage = "https://github.com/dolevf/graphw00f";
34     license = licenses.bsd3;
35     maintainers = with maintainers; [ fab ];
36   };