python3Packages.pyhidra: init at 1.3.0
This commit is contained in:
committed by
Fabian Affolter
parent
7bce6fbf11
commit
9ef351981d
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user