nixpkgs/pkgs/tools/security/ntlmrecon/default.nix
Fabian Affolter 400465427d ntlmrecon: add changelog to meta
- add format
- remove disabled
2023-06-07 23:40:27 +02:00

40 lines
864 B
Nix

{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "ntlmrecon";
version = "0.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "pwnfoo";
repo = "NTLMRecon";
rev = "refs/tags/v-${version}";
sha256 = "0rrx49li2l9xlcax84qxjf60nbzp3fgq77c36yqmsp0pc9i89ah6";
};
propagatedBuildInputs = with python3.pkgs; [
colorama
iptools
requests
termcolor
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"ntlmrecon"
];
meta = with lib; {
description = "Information enumerator for NTLM authentication enabled web endpoints";
homepage = "https://github.com/pwnfoo/NTLMRecon";
changelog = "https://github.com/pwnfoo/NTLMRecon/releases/tag/v-${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}