Files
nixpkgs/pkgs/development/python-modules/ida-netnode/default.nix
Fabian Affolter 72297ac714 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
2026-06-03 16:40:57 +02:00

43 lines
1007 B
Nix

{
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 ];
};
})