python3.pkgs.capstone: broken on aarch64

This commit is contained in:
Cole Helbling
2021-04-22 08:35:57 -07:00
parent 20313e8b73
commit aa452d69a1
@@ -1,7 +1,7 @@
{ stdenv { lib
, lib
, buildPythonPackage , buildPythonPackage
, capstone , capstone
, stdenv
, fetchpatch , fetchpatch
, fetchPypi , fetchPypi
, setuptools , setuptools
@@ -33,5 +33,7 @@ buildPythonPackage rec {
license = licenses.bsdOriginal; license = licenses.bsdOriginal;
description = "Python bindings for Capstone disassembly engine"; description = "Python bindings for Capstone disassembly engine";
maintainers = with maintainers; [ bennofs ris ]; maintainers = with maintainers; [ bennofs ris ];
# creates a manylinux2014-x86_64 wheel
broken = stdenv.isAarch64;
}; };
} }