nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python313Packages.ghidra-bridge: refactor

+6 -2
+6 -2
pkgs/development/python-modules/ghidra-bridge/default.nix
··· 4 4 fetchFromGitHub, 5 5 jfx-bridge, 6 6 setuptools, 7 - wheel, 8 7 }: 9 8 10 9 buildPythonPackage rec { ··· 19 20 }; 20 21 21 22 patches = [ ./no-invoke-git.patch ]; 23 + 22 24 postPatch = '' 23 25 substituteInPlace ./setup.py --subst-var-by version ${version} 24 26 ''; ··· 28 28 29 29 dependencies = [ jfx-bridge ]; 30 30 31 + # Tests require a running server instance 32 + doCheck = false; 33 + 31 34 pythonImportsCheck = [ "ghidra_bridge" ]; 32 35 33 36 meta = { 34 - description = "Python 3 bridge to Ghidra's Python scripting"; 37 + description = "Python bridge to Ghidra's Python scripting"; 35 38 homepage = "https://github.com/justfoxing/ghidra_bridge"; 39 + changelog = "https://github.com/justfoxing/ghidra_bridge/releases/tag/${src.tag}"; 36 40 license = lib.licenses.mit; 37 41 maintainers = with lib.maintainers; [ scoder12 ]; 38 42 };