From 6f61a43abbe55118272ae476b64c0d4b4fb41644 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Thu, 13 Nov 2025 12:30:57 -0800 Subject: [PATCH] python3Packages.google-photos-library-api: 0.12.1 -> 1.0.0 Diff: https://github.com/allenporter/python-google-photos-library-api/compare/0.12.1...1.0.0 Changelog: https://github.com/allenporter/python-google-photos-library-api/releases/tag/1.0.0 --- .../python-modules/google-photos-library-api/default.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/google-photos-library-api/default.nix b/pkgs/development/python-modules/google-photos-library-api/default.nix index 87a7c8a5f626..34406748b650 100644 --- a/pkgs/development/python-modules/google-photos-library-api/default.nix +++ b/pkgs/development/python-modules/google-photos-library-api/default.nix @@ -2,8 +2,6 @@ aiohttp, buildPythonPackage, fetchFromGitHub, - google-api-python-client, - google-auth, lib, mashumaro, pytest-aiohttp, @@ -13,22 +11,20 @@ buildPythonPackage rec { pname = "google-photos-library-api"; - version = "0.12.1"; + version = "1.0.0"; pyproject = true; src = fetchFromGitHub { owner = "allenporter"; repo = "python-google-photos-library-api"; tag = version; - hash = "sha256-xSwUzVwC7RPpmC9M1x/WYIaoiUlcF2h2fwiP6FYA6sw="; + hash = "sha256-BtVnFQ0MtxQBvT0xff59hBED89rtg8xfuv31T13qL8w="; }; build-system = [ setuptools ]; dependencies = [ aiohttp - google-api-python-client - google-auth mashumaro ];