python3Packages.pyhidra: init at 1.3.0

This commit is contained in:
Spencer Pogorzelski
2025-03-22 20:30:04 +01:00
committed by Fabian Affolter
parent 7bce6fbf11
commit 9ef351981d
2 changed files with 37 additions and 0 deletions
@@ -0,0 +1,35 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
jpype1,
setuptools,
wheel,
}:
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 ];
pythonImportsCheck = [ "pyhidra" ];
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 ];
};
}
+2
View File
@@ -10922,6 +10922,8 @@ self: super: with self; {
pyhepmc = callPackage ../development/python-modules/pyhepmc { };
pyhidra = callPackage ../development/python-modules/pyhidra { };
pyhive-integration = callPackage ../development/python-modules/pyhive-integration { };
pyhumps = callPackage ../development/python-modules/pyhumps { };