python3Packages.pyhidra: drop

This commit is contained in:
GraysonTinker
2026-04-21 06:59:11 -07:00
parent 1e331e9dbf
commit 36f3208413
3 changed files with 1 additions and 59 deletions
@@ -1,57 +0,0 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
jpype1,
pytest-datadir,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "pyhidra";
version = "1.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "dod-cyber-crime-center";
repo = "pyhidra";
tag = version;
hash = "sha256-8xouU+S7Apy1ySIlvOLPerTApqKy/MNdl9vuBdt+9Vk=";
};
build-system = [ setuptools ];
dependencies = [ jpype1 ];
nativeCheckInputs = [
pytest-datadir
pytestCheckHook
];
pythonImportsCheck = [ "pyhidra" ];
disabledTests = [
# Tests require a running Ghidra instance
"test_invalid_jpype_keyword_arg"
"test_invalid_vm_arg_succeed"
"test_run_script"
"test_open_program"
"test_no_compiler"
"test_no_language_with_compiler"
"test_loader"
"test_invalid_loader_type"
"test_no_project"
"test_no_program"
"test_import_script"
"test_import_ghidra_base_java_packages"
];
meta = {
description = "Provides direct access to the Ghidra API within a native CPython interpreter using jpype";
homepage = "https://github.com/dod-cyber-crime-center/pyhidra";
changelog = "https://github.com/dod-cyber-crime-center/pyhidra/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ scoder12 ];
};
}
+1
View File
@@ -411,6 +411,7 @@ mapAliases {
pygls_2 = pygls; # added 2026-01-05
pygtk = throw "pygtk has been removed because it was not supported by python3"; # Added 2026-01-14
pyheif = throw "pyheif has been removed due to lack of upstream maintenance and breakage. Use `pillow-heif` instead."; # added 2025-09-17
pyhidra = throw "'pyhidra' has been removed as it was incorporated into upstream and renamed 'pyghidra'"; # Added 2026-04-21
pyhiveapi = throw "'pyhiveapi' has been renamed to/replaced by 'pyhive-integration'"; # Converted to throw 2025-10-29
pyialarmxr = throw "'pyialarmxr' has been renamed to/replaced by 'pyialarmxr-homeassistant'"; # Converted to throw 2025-10-29
PyICU = throw "'PyICU' has been renamed to/replaced by 'pyicu'"; # Converted to throw 2025-10-29
-2
View File
@@ -13900,8 +13900,6 @@ self: super: with self; {
pyhibp = callPackage ../development/python-modules/pyhibp { };
pyhidra = callPackage ../development/python-modules/pyhidra { };
pyhik = callPackage ../development/python-modules/pyhik { };
pyhive-integration = callPackage ../development/python-modules/pyhive-integration { };