Unverified Commit 6a1e6491 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

parents 8664b188 1f8df21e
Loading
Loading
Loading
Loading
+54 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 { };