Merge pull request #274224 from fabaff/ad-miner

ad-miner: init at 0.6.0

authored by Fabian Affolter and committed by GitHub d5642915 8f545246

+44
+44
pkgs/by-name/ad/ad-miner/package.nix
··· 1 + { lib 2 + , python3 3 + , fetchFromGitHub 4 + }: 5 + 6 + python3.pkgs.buildPythonApplication rec { 7 + pname = "ad-miner"; 8 + version = "0.6.0"; 9 + pyproject = true; 10 + 11 + src = fetchFromGitHub { 12 + owner = "Mazars-Tech"; 13 + repo = "AD_Miner"; 14 + rev = "refs/tags/v${version}"; 15 + hash = "sha256-Iwg00vAnCs9FbEAmB54vNDLmxyZeCtZMl/VEFoYeEcM="; 16 + }; 17 + 18 + nativeBuildInputs = with python3.pkgs; [ 19 + poetry-core 20 + ]; 21 + 22 + propagatedBuildInputs = with python3.pkgs; [ 23 + neo4j 24 + numpy 25 + pytz 26 + tqdm 27 + ]; 28 + 29 + # Project has no tests 30 + doCheck = false; 31 + 32 + pythonImportsCheck = [ 33 + "ad_miner" 34 + ]; 35 + 36 + meta = with lib; { 37 + description = "Active Directory audit tool that leverages cypher queries to crunch data from Bloodhound"; 38 + homepage = "https://github.com/Mazars-Tech/AD_Miner"; 39 + changelog = "https://github.com/Mazars-Tech/AD_Miner/blob/${version}/CHANGELOG.md"; 40 + license = licenses.gpl3Only; 41 + maintainers = with maintainers; [ fab ]; 42 + mainProgram = "AD-miner"; 43 + }; 44 + }