ad-miner: init at 0.6.0

Active Directory audit tool that leverages cypher queries to crunch
data from Bloodhound

https://github.com/Mazars-Tech/AD_Miner
This commit is contained in:
Fabian Affolter 2023-12-14 14:50:02 +01:00
parent 604365c826
commit e2e9ebe806

View file

@ -0,0 +1,44 @@
{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "ad-miner";
version = "0.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Mazars-Tech";
repo = "AD_Miner";
rev = "refs/tags/v${version}";
hash = "sha256-Iwg00vAnCs9FbEAmB54vNDLmxyZeCtZMl/VEFoYeEcM=";
};
nativeBuildInputs = with python3.pkgs; [
poetry-core
];
propagatedBuildInputs = with python3.pkgs; [
neo4j
numpy
pytz
tqdm
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"ad_miner"
];
meta = with lib; {
description = "Active Directory audit tool that leverages cypher queries to crunch data from Bloodhound";
homepage = "https://github.com/Mazars-Tech/AD_Miner";
changelog = "https://github.com/Mazars-Tech/AD_Miner/blob/${version}/CHANGELOG.md";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
mainProgram = "AD-miner";
};
}