python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / ntlmrecon / default.nix
blobd24d4ed4d683ffa9a149ca96b8b5fcf6c1eec17e
1 { lib
2 , fetchFromGitHub
3 , python3
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "ntlmrecon";
8   version = "0.4";
9   disabled = python3.pythonOlder "3.6";
11   src = fetchFromGitHub {
12     owner = "pwnfoo";
13     repo = "NTLMRecon";
14     rev = "v-${version}";
15     sha256 = "0rrx49li2l9xlcax84qxjf60nbzp3fgq77c36yqmsp0pc9i89ah6";
16   };
18   propagatedBuildInputs = with python3.pkgs; [
19     colorama
20     iptools
21     requests
22     termcolor
23   ];
25   # Project has no tests
26   doCheck = false;
27   pythonImportsCheck = [ "ntlmrecon" ];
29   meta = with lib; {
30     description = "Information enumerator for NTLM authentication enabled web endpoints";
31     homepage = "https://github.com/pwnfoo/NTLMRecon";
32     license = with licenses; [ mit ];
33     maintainers = with maintainers; [ fab ];
34   };