python3Packages.ghidra-bridge: drop

This commit is contained in:
GraysonTinker
2026-04-05 16:21:58 -07:00
parent 8a566cb9b5
commit af3057b2fe
4 changed files with 1 additions and 58 deletions
@@ -1,43 +0,0 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
jfx-bridge,
setuptools,
}:
buildPythonPackage rec {
pname = "ghidra-bridge";
version = "1.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "justfoxing";
repo = "ghidra_bridge";
tag = version;
hash = "sha256-VcAl1tamsuHvZRtBP0+DCl2A9d7E6aoj2AbJhEcBNMM=";
};
patches = [ ./no-invoke-git.patch ];
postPatch = ''
substituteInPlace ./setup.py --subst-var-by version ${version}
'';
build-system = [ setuptools ];
dependencies = [ jfx-bridge ];
# Tests require a running server instance
doCheck = false;
pythonImportsCheck = [ "ghidra_bridge" ];
meta = {
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 ];
};
}
@@ -1,13 +0,0 @@
diff --git a/setup.py b/setup.py
index 9a2abe0..75ce109 100644
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ with open("README.md", "r") as fh:
# determine the version, then write it out into the bridge.py file
version = (
- subprocess.check_output("git describe --tags", shell=True).decode("utf-8").strip()
+ "@version@"
)
# check if this is a non-tag release and remark it as a dev release
if "-" in version:
+1
View File
@@ -231,6 +231,7 @@ mapAliases {
FormEncode = throw "'FormEncode' has been renamed to/replaced by 'formencode'"; # Converted to throw 2025-10-29
garminconnect-ha = throw "'garminconnect-ha' has been renamed to/replaced by 'garminconnect'"; # Converted to throw 2025-10-29
GeoIP = throw "'GeoIP' has been renamed to/replaced by 'geoip'"; # Converted to throw 2025-10-29
ghidra-bridge = throw "'ghidra-bridge' has been removed as it was unmaintained upstream"; # Added 2026-04-05
github3_py = throw "'github3_py' has been renamed to/replaced by 'github3-py'"; # Converted to throw 2025-10-29
GitPython = throw "'GitPython' has been renamed to/replaced by 'gitpython'"; # Converted to throw 2025-10-29
google_api_python_client = throw "'google_api_python_client' has been renamed to/replaced by 'google-api-python-client'"; # Converted to throw 2025-10-29
-2
View File
@@ -6232,8 +6232,6 @@ self: super: with self; {
ghdiff = callPackage ../development/python-modules/ghdiff { };
ghidra-bridge = callPackage ../development/python-modules/ghidra-bridge { };
ghmap = callPackage ../development/python-modules/ghmap { };
ghome-foyer-api = callPackage ../development/python-modules/ghome-foyer-api { };