fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
55 lines
1.4 KiB
Nix
55 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
python,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyelftools";
|
|
version = "0.31";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "eliben";
|
|
repo = "pyelftools";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-kX89fMXqrEvhMAAjqKHzHmrYizKBt1uCWMOJtFNNhy4=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
doCheck = stdenv.hostPlatform.system == "x86_64-linux" && stdenv.hostPlatform.isGnu;
|
|
|
|
checkPhase = ''
|
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" test/external_tools/readelf
|
|
${python.interpreter} test/run_all_unittests.py
|
|
${python.interpreter} test/run_examples_test.py
|
|
${python.interpreter} test/run_readelf_tests.py --parallel
|
|
'';
|
|
|
|
pythonImportsCheck = [ "elftools" ];
|
|
|
|
meta = {
|
|
description = "Python library for analyzing ELF files and DWARF debugging information";
|
|
homepage = "https://github.com/eliben/pyelftools";
|
|
changelog = "https://github.com/eliben/pyelftools/blob/v${version}/CHANGES";
|
|
license = with lib.licenses; [
|
|
# Public domain with Unlicense waiver.
|
|
unlicense
|
|
# pyelftools bundles construct library that is licensed under MIT license.
|
|
# See elftools/construct/{LICENSE,README} in the source code.
|
|
mit
|
|
];
|
|
maintainers = with lib.maintainers; [
|
|
igsha
|
|
pamplemousse
|
|
];
|
|
mainProgram = "readelf.py";
|
|
};
|
|
}
|