python3Packages.ida-netnode: init at 3.0.0

Humane API for storing and accessing persistent data in IDA Pro
databases

https://github.com/williballenthin/ida-netnode
This commit is contained in:
Fabian Affolter
2026-06-03 10:28:21 +02:00
parent b37656cd6a
commit 72297ac714
2 changed files with 44 additions and 0 deletions
@@ -0,0 +1,42 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
nix-update-script,
setuptools,
six,
}:
buildPythonPackage (finalAttrs: {
pname = "ida-netnode";
version = "3.0.0";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "williballenthin";
repo = "ida-netnode";
tag = "v${finalAttrs.version}";
hash = "sha256-hXApNeeDYHX41zuYDpSNqSXdM/c8DoVXuB6NMqYf7iU=";
};
build-system = [ setuptools ];
dependencies = [ six ];
# Module has no test and requires IDA to be installed
doCheck = false;
# pythonImportsCheck = [ "netnode"];
passthru.updateScript = nix-update-script { };
meta = {
description = "Humane API for storing and accessing persistent data in IDA Pro databases";
homepage = "https://github.com/williballenthin/ida-netnode";
changelog = "https://github.com/williballenthin/ida-netnode/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
})
+2
View File
@@ -7497,6 +7497,8 @@ self: super: with self; {
ida-hcli = callPackage ../development/python-modules/ida-hcli { };
ida-netnode = callPackage ../development/python-modules/ida-netnode { };
ida-settings = callPackage ../development/python-modules/ida-settings { };
idapro = callPackage ../development/python-modules/idapro { };