kdeFrameworks.ki18n: python2 -> python3

Upstream has support: 8f84d19aad/cmake/KF5I18nMacros.cmake.in (L34)
This commit is contained in:
Graham Christensen 2019-12-18 20:29:47 -05:00
parent ad7c7cfe7a
commit 4e421aebfe
No known key found for this signature in database
GPG Key ID: FE918C3A98C1030F

View File

@ -1,6 +1,6 @@
{
mkDerivation, lib,
extra-cmake-modules, gettext, python,
extra-cmake-modules, gettext, python3,
qtbase, qtdeclarative, qtscript,
}:
@ -11,6 +11,6 @@ mkDerivation {
broken = builtins.compareVersions qtbase.version "5.7.0" < 0;
};
nativeBuildInputs = [ extra-cmake-modules ];
propagatedNativeBuildInputs = [ gettext python ];
propagatedNativeBuildInputs = [ gettext python3 ];
buildInputs = [ qtdeclarative qtscript ];
}