7 python3.pkgs.buildPythonApplication rec {
12 src = fetchFromGitHub {
15 rev = "refs/tags/${version}";
16 hash = "sha256-WeaKToKYIB+jjTNIQvAUQQNb25TsNWALYZwIZuBjkPE=";
19 pythonRelaxDeps = [ "impacket" ];
21 build-system = with python3.pkgs; [ poetry-core ];
23 dependencies = with python3.pkgs; [
28 pythonImportsCheck = [ "coercer" ];
30 # this file runs into issues on case-insensitive filesystems
31 # ValueError: Both <...>/coercer and <...>/coercer.py exist
37 description = "Tool to automatically coerce a Windows server";
38 homepage = "https://github.com/p0dalirius/Coercer";
39 changelog = "https://github.com/p0dalirius/Coercer/releases/tag/${version}";
40 license = licenses.gpl2Only;
41 maintainers = with maintainers; [ fab ];
42 mainProgram = "coercer";