aws-lc: 1.39.0 -> 1.42.0 (#369942)
[NixPkgs.git] / pkgs / by-name / sw / swaggerhole / package.nix
blob3f07eb76b5d8aa9d52d883dfdb9c56f588aad382
2   lib,
3   fetchFromGitHub,
4   python3,
5 }:
7 python3.pkgs.buildPythonApplication rec {
8   pname = "swaggerhole";
9   version = "1.1";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "Liodeus";
14     repo = pname;
15     # Source is not tagged at the moment, https://github.com/Liodeus/swaggerHole/issues/2
16     rev = "14846406fbd0f145d71ad51c3b87f383e4afbc3b";
17     hash = "sha256-3HmIpn1A86PXZRL+SqMdr84O16hW1mCUWHKnOVolmx8=";
18   };
20   propagatedBuildInputs = with python3.pkgs; [
21     requests
22     whispers
23   ];
25   # Project has no tests
26   doCheck = false;
28   pythonImportsCheck = [
29     "swaggerhole"
30   ];
32   meta = with lib; {
33     description = "Tool to searching for secret on swaggerhub";
34     mainProgram = "swaggerhole";
35     homepage = "https://github.com/Liodeus/swaggerHole";
36     license = with licenses; [ gpl3Plus ];
37     maintainers = with maintainers; [ fab ];
38   };