python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / ghdorker / default.nix
blobc6882fb110a80194e17f4b7d33a201e2465afdee
1 { lib
2 , python3
3 }:
5 python3.pkgs.buildPythonApplication rec {
6   pname = "ghdorker";
7   version = "0.3.2";
8   format = "setuptools";
10   src = python3.pkgs.fetchPypi {
11     inherit pname version;
12     sha256 = "sha256-wF4QoXxH55SpdYgKLHf4sCwUk1rkCpSdnIX5FvFi/BU=";
13   };
15   propagatedBuildInputs = with python3.pkgs; [
16     ghapi
17     glom
18     python-dotenv
19     pyyaml
20   ];
22   # Project has no tests
23   doCheck = false;
25   pythonImportsCheck = [
26     "GHDorker"
27   ];
29   meta = with lib; {
30     description = "Extensible GitHub dorking tool";
31     homepage = "https://github.com/dtaivpp/ghdorker";
32     license = with licenses; [ asl20 ];
33     maintainers = with maintainers; [ fab ];
34   };