{ lib , buildPythonPackage , fetchFromGitHub , pytestCheckHook , nose }: buildPythonPackage rec { pname = "archinfo"; version = "9.1.10913"; src = fetchFromGitHub { owner = "angr"; repo = pname; rev = "v${version}"; sha256 = "sha256-VLFbjKX7WXWoJCS9hYwtEikGC48gRg7E24D9Un+/gdc="; }; checkInputs = [ nose pytestCheckHook ]; pythonImportsCheck = [ "archinfo" ]; meta = with lib; { description = "Classes with architecture-specific information"; homepage = "https://github.com/angr/archinfo"; license = with licenses; [ bsd2 ]; maintainers = [ maintainers.fab ]; }; }