python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / pretender / default.nix
blobd665b72a749ddcdd228ae60373106f8496069520
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "pretender";
8   version = "1.0.0";
10   src = fetchFromGitHub {
11     owner = "RedTeamPentesting";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "sha256-JTNmebubaJQMtZm1ZGZote1qXjjiMcxSGQYPgLZXd0o=";
15   };
17   vendorSha256 = "sha256-CpMrxAZ+7Dc1UgH+AnuGh+gpBZpLshck/1+9WJNssEk=";
19   # Tests require network access
20   doCheck = false;
22   meta = with lib; {
23     description = "Tool for handling machine-in-the-middle tasks";
24     homepage = "https://github.com/RedTeamPentesting/pretender";
25     license = with licenses; [ mit ];
26     maintainers = with maintainers; [ fab ];
27   };