python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / crackql / default.nix
blobab78f177fd7c5696d6013e379581d1c861e7a1b9
1 { lib
2 , fetchFromGitHub
3 , python3
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "crackql";
8   version = "unstable-20220821";
9   format = "pyproject";
11   src = fetchFromGitHub {
12     owner = "nicholasaleks";
13     repo = "CrackQL";
14     # rev = "refs/tags/${version}";
15     # Switch to tag with the next update
16     rev = "5bcf92f4520a4dd036baf9f47c5ebbf18e6a032a";
17     hash = "sha256-XlHbGkwdOV1nobjtQP/M3IIEuzXHBuwf52EsXf3MWoM=";
18   };
20   nativeBuildInputs = with python3.pkgs; [
21     poetry-core
22   ];
24   propagatedBuildInputs = with python3.pkgs; [
25     requests
26     graphql-core
27     jinja2
28     typing-extensions
29   ];
31   meta = with lib; {
32     description = "GraphQL password brute-force and fuzzing utility";
33     homepage = "https://github.com/nicholasaleks/CrackQL";
34     license = with licenses; [ bsd3 ];
35     maintainers = with maintainers; [ fab ];
36   };