biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / coercer / default.nix
blob2c7faee3a34bbe9965f6e3fcc35c800bcf7d1f1b
2   lib,
3   fetchFromGitHub,
4   python3,
5 }:
7 python3.pkgs.buildPythonApplication rec {
8   pname = "coercer";
9   version = "2.4.3";
10   pyproject = true;
12   src = fetchFromGitHub {
13     owner = "p0dalirius";
14     repo = "Coercer";
15     rev = "refs/tags/${version}";
16     hash = "sha256-WeaKToKYIB+jjTNIQvAUQQNb25TsNWALYZwIZuBjkPE=";
17   };
19   pythonRelaxDeps = [ "impacket" ];
21   build-system = with python3.pkgs; [ poetry-core ];
23   dependencies = with python3.pkgs; [
24     impacket
25     xlsxwriter
26   ];
28   pythonImportsCheck = [ "coercer" ];
30   # this file runs into issues on case-insensitive filesystems
31   # ValueError: Both <...>/coercer and <...>/coercer.py exist
32   postPatch = ''
33     rm Coercer.py
34   '';
36   meta = with lib; {
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";
43   };