mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.ai-edge-litert: use badPlatforms instead of broken to disable on darwin
This commit is contained in:
parent
80896c01c5
commit
cc02ad6df4
1 changed files with 4 additions and 1 deletions
|
|
@ -84,7 +84,6 @@ buildPythonPackage {
|
|||
passthru.updateScript = ./update.py;
|
||||
|
||||
meta = {
|
||||
broken = stdenv.hostPlatform.isDarwin; # elftools.common.exceptions.ELFError: Magic number does not match
|
||||
changelog = "https://github.com/google-ai-edge/LiteRT/releases/tag/v${release.version}";
|
||||
description = "LiteRT is for mobile and embedded devices";
|
||||
downloadPage = "https://github.com/google-ai-edge/LiteRT";
|
||||
|
|
@ -93,5 +92,9 @@ buildPythonPackage {
|
|||
platforms = lib.attrNames platforms;
|
||||
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
|
||||
maintainers = with lib.maintainers; [ hexa ];
|
||||
badPlatforms = [
|
||||
# elftools.common.exceptions.ELFError: Magic number does not match
|
||||
lib.systems.inspect.patterns.isDarwin
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue