python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / inql / default.nix
blob28abbe075bf4ab876a1e3826ed49c55fd8168fa2
1 { lib
2 , fetchFromGitHub
3 , python3
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "inql";
8   version = "4.0.5";
10   src = fetchFromGitHub {
11     owner = "doyensec";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "sha256-0LPJMCg7F9kcPcq4jkADdCPNLfRThXu8QHy4qOn7+QU=";
15   };
17   propagatedBuildInputs = with python3.pkgs; [
18     stickytape
19   ];
21   # Project has no tests
22   doCheck = false;
24   pythonImportsCheck = [
25     "inql"
26   ];
28   meta = with lib; {
29     description = "Security testing tool for GraphQL";
30     homepage = "https://github.com/doyensec/inql";
31     license = with licenses; [ asl20 ];
32     maintainers = with maintainers; [ fab ];
33   };