python313Packages.agentic-threat-hunting-framework: init at 0.2.2 (#476983)

This commit is contained in:
Fabian Affolter
2026-01-05 10:05:39 +00:00
committed by GitHub
2 changed files with 58 additions and 0 deletions
@@ -0,0 +1,54 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
click,
jinja2,
pyyaml,
rich,
pytest-cov-stub,
pytestCheckHook,
scikit-learn,
}:
buildPythonPackage rec {
pname = "agentic-threat-hunting-framework";
version = "0.2.2";
pyproject = true;
src = fetchFromGitHub {
owner = "Nebulock-Inc";
repo = "agentic-threat-hunting-framework";
tag = "v${version}";
hash = "sha256-rt7WmBCbSqoZBpwGi7dzh8QDw8Iby3LSdavnCot1Hr0=";
};
build-system = [ setuptools ];
dependencies = [
click
jinja2
pyyaml
rich
];
optional-dependencies = {
similarity = [ scikit-learn ];
};
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
];
pythonImportsCheck = [ "athf" ];
meta = {
description = "Framework for agentic threat hunting";
homepage = "https://github.com/Nebulock-Inc/agentic-threat-hunting-framework";
changelog = "https://github.com/Nebulock-Inc/agentic-threat-hunting-framework/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
+4
View File
@@ -142,6 +142,10 @@ self: super: with self; {
agent-py = callPackage ../development/python-modules/agent-py { };
agentic-threat-hunting-framework =
callPackage ../development/python-modules/agentic-threat-hunting-framework
{ };
aggdraw = callPackage ../development/python-modules/aggdraw { };
aggregate6 = callPackage ../development/python-modules/aggregate6 { };