6 python3.pkgs.buildPythonApplication rec {
7 pname = "crackmapexec";
11 src = fetchFromGitHub {
12 owner = "byt3bl33d3r";
13 repo = "CrackMapExec";
15 hash = "sha256-wPS1PCvR9Ffp0r9lZZkFATt+i+eR5ap16HzLWDZbJKI=";
18 nativeBuildInputs = with python3.pkgs; [
23 propagatedBuildInputs = with python3.pkgs; [
44 substituteInPlace pyproject.toml \
45 --replace '{ git = "https://github.com/mpgn/impacket.git", branch = "master" }' '"x"'
48 pythonRelaxDeps = true;
50 # Project has no tests
53 pythonImportsCheck = [
58 description = "Tool for pentesting networks";
59 homepage = "https://github.com/byt3bl33d3r/CrackMapExec";
60 license = with licenses; [ bsd2 ];
61 maintainers = with maintainers; [ fab ];