diff --git a/pkgs/tools/backup/gphotos-sync/default.nix b/pkgs/tools/backup/gphotos-sync/default.nix index cce9c5b77b7b..515bfc31cf29 100644 --- a/pkgs/tools/backup/gphotos-sync/default.nix +++ b/pkgs/tools/backup/gphotos-sync/default.nix @@ -1,4 +1,8 @@ -{ lib, fetchFromGitHub, python3Packages, ffmpeg }: +{ lib +, fetchFromGitHub +, python3Packages +, ffmpeg +}: python3Packages.buildPythonApplication rec { pname = "gphotos-sync"; @@ -17,10 +21,12 @@ python3Packages.buildPythonApplication rec { exif psutil pyyaml - requests_oauthlib + requests-oauthlib ]; - buildInputs = [ ffmpeg ]; + buildInputs = [ + ffmpeg + ]; checkInputs = with python3Packages; [ pytestCheckHook @@ -41,8 +47,8 @@ python3Packages.buildPythonApplication rec { meta = with lib; { description = "Google Photos and Albums backup with Google Photos Library API"; - homepage = "https://github.com/gilesknap/gphotos-sync"; - license = licenses.mit; + homepage = "https://github.com/gilesknap/gphotos-sync"; + license = licenses.mit; maintainers = with maintainers; [ dnr ]; }; }