python3Packages.qiskit-aer: only enable on x86_64

Build was failing on ofborg on platforms.aarch64 due to
missing muparserx library built for aarch64. Added notes about
this issue & when build could be expanded.
This commit is contained in:
Drew Risinger 2020-04-06 12:03:07 -04:00
parent 2553798f93
commit ab4336f7b7

View File

@ -95,5 +95,9 @@ buildPythonPackage rec {
homepage = "https://github.com/QISKit/qiskit-aer";
license = licenses.asl20;
maintainers = with maintainers; [ drewrisinger ];
# Doesn't build on aarch64 (libmuparserx issue).
# Can fix by building muparserx from source (https://github.com/beltoforion/muparserx)
# or in future updates (e.g. Raspberry Pi enabled via https://github.com/Qiskit/qiskit-aer/pull/651 & https://github.com/Qiskit/qiskit-aer/pull/660)
platforms = platforms.x86_64;
};
}