nixpkgs/pkgs/development/python-modules/pyelftools/default.nix
2022-12-19 16:02:46 +01:00

44 lines
1.1 KiB
Nix

{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, python
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyelftools";
version = "0.29";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "eliben";
repo = pname;
rev = "v${version}";
hash = "sha256-tPY0C5CoA9hGHeEA/KWQ1RAVT5kqMlAwuWpOSH+KJ9Y=";
};
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 = with lib; {
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 = licenses.publicDomain;
maintainers = with maintainers; [ igsha pamplemousse ];
};
}