gphotos-sync: rename requests-oauthlib

This commit is contained in:
Fabian Affolter
2022-03-28 08:17:05 +02:00
parent 135299a1f4
commit f91f32ac2a
+11 -5
View File
@@ -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 ];
};
}