Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

kdeFrameworks.ki18n: python2 -> python3

Upstream has support: https://github.com/KDE/ki18n/blame/8f84d19aad04b2a925f2373ad26323bb8324b982/cmake/KF5I18nMacros.cmake.in#L34

+2 -2
+2 -2
pkgs/development/libraries/kde-frameworks/ki18n.nix
··· 1 1 { 2 2 mkDerivation, lib, 3 - extra-cmake-modules, gettext, python, 3 + extra-cmake-modules, gettext, python3, 4 4 qtbase, qtdeclarative, qtscript, 5 5 }: 6 6 ··· 11 11 broken = builtins.compareVersions qtbase.version "5.7.0" < 0; 12 12 }; 13 13 nativeBuildInputs = [ extra-cmake-modules ]; 14 - propagatedNativeBuildInputs = [ gettext python ]; 14 + propagatedNativeBuildInputs = [ gettext python3 ]; 15 15 buildInputs = [ qtdeclarative qtscript ]; 16 16 }