python313Packages.ghidra-bridge: refactor

Changed files
+6 -2
pkgs
development
python-modules
ghidra-bridge
+6 -2
pkgs/development/python-modules/ghidra-bridge/default.nix
···
fetchFromGitHub,
jfx-bridge,
setuptools,
-
wheel,
}:
buildPythonPackage rec {
···
};
patches = [ ./no-invoke-git.patch ];
+
postPatch = ''
substituteInPlace ./setup.py --subst-var-by version ${version}
'';
···
dependencies = [ jfx-bridge ];
+
# Tests require a running server instance
+
doCheck = false;
+
pythonImportsCheck = [ "ghidra_bridge" ];
meta = {
-
description = "Python 3 bridge to Ghidra's Python scripting";
+
description = "Python bridge to Ghidra's Python scripting";
homepage = "https://github.com/justfoxing/ghidra_bridge";
+
changelog = "https://github.com/justfoxing/ghidra_bridge/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ scoder12 ];
};