Loading pkgs/development/python-modules/agentic-threat-hunting-framework/default.nix 0 → 100644 +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 ]; }; } pkgs/top-level/python-packages.nix +4 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading Loading
pkgs/development/python-modules/agentic-threat-hunting-framework/default.nix 0 → 100644 +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 ]; }; }
pkgs/top-level/python-packages.nix +4 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading