feat(packages): add nftables-analyzer package
Some checks failed
CI / check (push) Has been cancelled

This commit is contained in:
2026-08-07 07:50:21 +03:00
parent f27894bb2f
commit 24079b7694
4 changed files with 61 additions and 0 deletions

1
.beads/issues.jsonl Normal file
View File

@@ -0,0 +1 @@
{"_type":"issue","id":"nix-overlay-bjd","title":"Add nftables-analyzer CLI package","description":"Add python3Packages.buildPythonApplication derivation for reinaldosaraiva/nftables-analyzer (CLI only). Pin to main commit 5fc78d0c9ce173e3baa80a5655bcadb1b2f78493 (no tags upstream). sourceRoot=source/backend, hatchling build system. Category: Networking. Frontend excluded - upstream repo missing frontend/src/lib modules.","status":"in_progress","priority":2,"issue_type":"task","assignee":"Alexander Miroshnichenko","owner":"alex@millerson.name","created_at":"2026-08-07T04:48:07Z","created_by":"Alexander Miroshnichenko","updated_at":"2026-08-07T04:48:10Z","started_at":"2026-08-07T04:48:10Z","dependency_count":0,"dependent_count":0,"comment_count":0}

View File

@@ -20,6 +20,7 @@ A custom Nix overlay and flake providing additional packages not found in upstre
| `graphify` | Turn any folder of code, docs, papers, images, or videos into a queryable knowledge graph | AI Coding Agents |
| `hipengine` | ROCm-native local LLM inference engine with torch-free runtime for AMD RDNA GPUs | AI Inference |
| `mcp-gateway` | Universal Model Context Protocol gateway that sits between AI client and MCP tools/servers | MCP Servers |
| `nftables-analyzer` | Analyze nftables firewall rules and evaluate traffic queries | Networking |
| `skillsmcp` | MCP server that exposes Agent Skills to AI agents via the Model Context Protocol | MCP Servers |
| `kubernetes-mcp-server` | Model Context Protocol (MCP) server for Kubernetes and OpenShift | MCP Servers |
| `loop` | Corporate messenger for your team | Communication |

View File

@@ -0,0 +1,5 @@
{
pkgs,
...
}:
pkgs.callPackage ./package.nix { }

View File

@@ -0,0 +1,54 @@
{
lib,
python3Packages,
fetchFromGitHub,
}:
python3Packages.buildPythonApplication rec {
pname = "nftables-analyzer";
version = "0.1.0-unstable-2025-11-27";
src = fetchFromGitHub {
owner = "reinaldosaraiva";
repo = "nftables-analyzer";
rev = "5fc78d0c9ce173e3baa80a5655bcadb1b2f78493";
hash = "sha256-PlEIArUPSSOtVrdUEamZBr1YQnm+GJpl5Xxgk0tHrdw=";
};
sourceRoot = "source/backend";
pyproject = true;
build-system = with python3Packages; [
hatchling
];
dependencies = with python3Packages; [
typer
rich
pydantic
fastapi
uvicorn
python-multipart
];
doCheck = false;
pythonImportsCheck = [ "nftables_analyzer" ];
passthru = {
category = "Networking";
updateScript = [
"nix-update"
"--flake"
".#nftables-analyzer"
];
};
meta = with lib; {
description = "Analyze nftables firewall rules and evaluate traffic queries";
homepage = "https://github.com/reinaldosaraiva/nftables-analyzer";
license = licenses.mit;
mainProgram = "nftables-analyzer";
platforms = platforms.all;
};
}