Merge pull request #305692 from Naxdy/work/add-python3-to-ecm

kdePackages/ecm: add `python3` to `extraPropagatedBuildInputs`

authored by

K900 and committed by
GitHub
45bc5d5b 3412d905

+10 -2
+10 -2
pkgs/kde/frameworks/extra-cmake-modules/default.nix
··· 1 - {mkKdeDerivation}: 2 mkKdeDerivation { 3 pname = "extra-cmake-modules"; 4 5 - outputs = ["out"]; 6 7 setupHook = ./ecm-hook.sh; 8 }
··· 1 + { mkKdeDerivation 2 + , python3 3 + }: 4 mkKdeDerivation { 5 pname = "extra-cmake-modules"; 6 7 + outputs = [ "out" ]; 8 + 9 + # Packages that have an Android APK (e.g. KWeather) require Python3 at build time. 10 + # See: https://invent.kde.org/frameworks/extra-cmake-modules/-/blob/v6.1.0/modules/ECMAddAndroidApk.cmake?ref_type=tags#L57 11 + propagatedNativeBuildInputs = [ 12 + python3 13 + ]; 14 15 setupHook = ./ecm-hook.sh; 16 }