Merge pull request #202884 from dotlambda/flatpak-builder-python2

flatpak-builder: skip tests that depend on python2

authored by Robert Schütz and committed by GitHub 7fbb7af4 fbe1c368

+4 -2
+4 -2
pkgs/development/tools/flatpak-builder/default.nix
··· 80 # this on our patch for Flatpak 0.99. 81 (substituteAll { 82 src = ./fix-test-paths.patch; 83 - inherit glibcLocales python2; 84 }) 85 ]; 86 ··· 137 installedTestsDependencies = [ 138 gnupg 139 ostree 140 - python2 141 gnumake 142 ]; 143
··· 80 # this on our patch for Flatpak 0.99. 81 (substituteAll { 82 src = ./fix-test-paths.patch; 83 + inherit glibcLocales; 84 + # FIXME use python3 for tests that rely on python2 85 + # inherit python2; 86 }) 87 ]; 88 ··· 139 installedTestsDependencies = [ 140 gnupg 141 ostree 142 + # FIXME python2 143 gnumake 144 ]; 145