python3.pkgs.capstone: broken on aarch64

This commit is contained in:
Cole Helbling 2021-04-22 08:34:16 -07:00
parent 20313e8b73
commit aa452d69a1
No known key found for this signature in database
GPG key ID: B37E0F2371016A4C

View file

@ -1,7 +1,7 @@
{ stdenv
, lib
{ lib
, buildPythonPackage
, capstone
, stdenv
, fetchpatch
, fetchPypi
, setuptools
@ -33,5 +33,7 @@ buildPythonPackage rec {
license = licenses.bsdOriginal;
description = "Python bindings for Capstone disassembly engine";
maintainers = with maintainers; [ bennofs ris ];
# creates a manylinux2014-x86_64 wheel
broken = stdenv.isAarch64;
};
}