gphotos-sync: rename requests-oauthlib

main
Fabian Affolter 2 years ago
parent 135299a1f4
commit f91f32ac2a
  1. 16
      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 ];
};
}

Loading…
Cancel
Save