{ lib , buildPythonPackage , fetchFromGitHub , pytestCheckHook , nose }: buildPythonPackage rec { pname = "archinfo"; version = "9.0.9031"; src = fetchFromGitHub { owner = "angr"; repo = pname; rev = "v${version}"; sha256 = "sha256-pzBMyw5FwQV1FyhvOxUq39s96p0KKSrkEvJzhJQdS4E="; }; 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 ]; }; }