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