evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / au / autobloody / package.nix
blobc55689350211d28e3b5e3cd0c6bc9fcbd73bd2df
1 { lib
2 , python3
3 , fetchFromGitHub
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "autobloody";
8   version = "0.1.8";
9   pyproject = true;
11   src = fetchFromGitHub {
12     owner = "CravateRouge";
13     repo = "autobloody";
14     rev = "refs/tags/v${version}";
15     hash = "sha256-0MwhdT9GYLcrdZSqszx1DC9lyz8K61lJZZCzeFfWB0E=";
16   };
18   nativeBuildInputs = with python3.pkgs; [
19     hatchling
20   ];
22   propagatedBuildInputs = with python3.pkgs; [
23     bloodyad
24     neo4j
25   ];
27   # Tests require a test file which is not available in the current release
28   doCheck = false;
30   nativeCheckInputs = with python3.pkgs; [
31     pytestCheckHook
32   ];
34   pythonImportsCheck = [
35     "autobloody"
36   ];
38   meta = with lib; {
39     description = "Tool to automatically exploit Active Directory privilege escalation paths";
40     homepage = "https://github.com/CravateRouge/autobloody";
41     changelog = "https://github.com/CravateRouge/autobloody/releases/tag/v${version}";
42     license = licenses.mit;
43     maintainers = with maintainers; [ fab ];
44     mainProgram = "autobloody";
45   };