adb-sync: use python3 (#44409)

According to https://github.com/google/adb-sync/pull/2#commitcomment-11399661,
it should work with python2 and python3. Using python3 is prefered in nixpkgs.

authored by Robert Schütz and committed by GitHub 0cd86e1e f0612719

+2 -2
+2 -2
pkgs/development/mobile/adb-sync/default.nix
··· 1 - { stdenv, fetchgit, python, androidsdk, makeWrapper }: 1 + { stdenv, fetchgit, python3, androidsdk, makeWrapper }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "adb-sync-${version}"; ··· 10 10 sha256 = "1y016bjky5sn58v91jyqfz7vw8qfqnfhb9s9jd32k8y29hy5vy4d"; 11 11 }; 12 12 13 - buildInputs = [ python androidsdk makeWrapper ]; 13 + buildInputs = [ python3 androidsdk makeWrapper ]; 14 14 15 15 phases = "installPhase"; 16 16