gphotos-sync: relax build dependencies

+13 -1
+13 -1
pkgs/tools/backup/gphotos-sync/default.nix
··· 21 21 ./skip-network-tests.patch 22 22 ]; 23 23 24 - nativeBuildInputs = [ python3.pkgs.pythonRelaxDepsHook ]; 24 + # Consider fixing this upstream by following up on: 25 + # https://github.com/gilesknap/gphotos-sync/issues/441 26 + postPatch = '' 27 + substituteInPlace pyproject.toml \ 28 + --replace "setuptools<57" "setuptools" \ 29 + --replace "wheel==0.33.1" "wheel" 30 + ''; 31 + 32 + nativeBuildInputs = with python3.pkgs; [ 33 + pythonRelaxDepsHook 34 + setuptools 35 + wheel 36 + ]; 25 37 26 38 pythonRelaxDeps = [ 27 39 "psutil"