f467de7572
https://github.com/gdabah/distorm/releases/tag/3.5.2 This commit was automatically generated using update-python-libraries.
46 lines
875 B
Nix
46 lines
875 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
distutils,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
yasm,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "distorm3";
|
|
version = "3.5.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gdabah";
|
|
repo = "distorm";
|
|
tag = version;
|
|
hash = "sha256-Fhvxag2UN5wXEySP1n1pCahMQR/SfssywikeLmiASwQ=";
|
|
};
|
|
|
|
build-system = [
|
|
distutils
|
|
setuptools
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
yasm
|
|
];
|
|
|
|
# TypeError: __init__() missing 3 required positional...
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "distorm3" ];
|
|
|
|
meta = {
|
|
description = "Disassembler library for x86/AMD64";
|
|
homepage = "https://github.com/gdabah/distorm";
|
|
changelog = "https://github.com/gdabah/distorm/releases/tag/${src.tag}";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|