Files
nixpkgs/pkgs/development/python-modules/distorm3/default.nix
T
Martin Weinelt f467de7572 python3Packages.distorm3: 3.5.2b -> 3.5.2
https://github.com/gdabah/distorm/releases/tag/3.5.2

This commit was automatically generated using update-python-libraries.
2026-02-01 16:42:58 +01:00

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 ];
};
}