python3Packages.ida-settings: init at 3.4.1

Fetch and set configuration values for IDA Plugins

https://github.com/williballenthin/ida-settings
This commit is contained in:
Fabian Affolter
2026-06-03 09:51:39 +02:00
parent 12da5015b0
commit b37656cd6a
2 changed files with 49 additions and 0 deletions
@@ -0,0 +1,47 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
uv-build,
ida-hcli,
nix-update-script,
}:
buildPythonPackage (finalAttrs: {
pname = "ida-settings";
version = "3.4.1";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "williballenthin";
repo = "ida-settings";
tag = "v${finalAttrs.version}";
hash = "sha256-YPkJ/yn7ZmEYZJART6oFLO7zIqzgPl2XCq5RfXasFV0=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "uv_build>=0.8.6,<0.9.0" "uv_build"
'';
build-system = [ uv-build ];
dependencies = [ ida-hcli ];
pythonImportsCheck = [ "ida_settings" ];
# Module has no tests
doCheck = false;
passthru.updateScript = nix-update-script { };
meta = {
description = "Fetch and set configuration values for IDA Plugins";
homepage = "https://github.com/williballenthin/ida-settings";
changelog = "https://github.com/williballenthin/ida-settings/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-settings = callPackage ../development/python-modules/ida-settings { };
idapro = callPackage ../development/python-modules/idapro { };
idasen = callPackage ../development/python-modules/idasen { };