6 python3.pkgs.buildPythonApplication rec {
11 src = fetchFromGitHub {
15 hash = "sha256-3+1ssFyU7SKFJgDYBQY0kVjmTHOD71D2AjnH+4bfLXo=";
18 nativeBuildInputs = with python3.pkgs; [
21 propagatedBuildInputs = with python3.pkgs; [
31 optional-dependencies = {
32 app = with python3.pkgs; [
42 nativeCheckInputs = with python3.pkgs; [
47 substituteInPlace setup.py \
48 --replace "'pytest-runner'," ""
56 pythonImportsCheck = [
61 # AttributeError: 'str' object has no attribute '__dict__'
66 description = "Tool for analysing binaries";
67 mainProgram = "amoco";
68 homepage = "https://github.com/bdcht/amoco";
69 license = licenses.gpl2Only;
70 maintainers = with maintainers; [ fab ];