diff --git a/package/flatpak/org.testium.Testium.yaml b/package/flatpak/org.testium.Testium.yaml index a6a828b..a59f036 100644 --- a/package/flatpak/org.testium.Testium.yaml +++ b/package/flatpak/org.testium.Testium.yaml @@ -40,7 +40,10 @@ modules: build-args: - --share=network build-commands: - - pip3 install --prefix=${FLATPAK_DEST} --only-binary=:all: "pygls>=1.3" + # Whole command single-quoted: the ':all: ' colon-space would otherwise + # make YAML parse this list item as a mapping, silently dropping the + # command (flatpak-builder then runs an empty module — installs nothing). + - 'pip3 install --prefix=${FLATPAK_DEST} --only-binary=:all: "pygls>=1.3"' # 1. Dépendances Python tierces (HORS PySide6) # Utilisez flatpak-pip-generator pour vos autres libs (ex: pyserial, requests, etc.)