From a6aabfd8073ec60d8c6a76e2aa7919f31f88c17f Mon Sep 17 00:00:00 2001 From: seth Date: Fri, 4 Oct 2024 21:19:55 -0400 Subject: [PATCH] python312Packages.google-reauth: drop --- .../python-modules/google-reauth/default.nix | 45 ------------------- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 2 - 3 files changed, 1 insertion(+), 47 deletions(-) delete mode 100644 pkgs/development/python-modules/google-reauth/default.nix diff --git a/pkgs/development/python-modules/google-reauth/default.nix b/pkgs/development/python-modules/google-reauth/default.nix deleted file mode 100644 index 854fee050697..000000000000 --- a/pkgs/development/python-modules/google-reauth/default.nix +++ /dev/null @@ -1,45 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchFromGitHub, - mock, - oauth2client, - pytestCheckHook, - pythonOlder, - pyu2f, -}: - -buildPythonPackage rec { - pname = "google-reauth"; - version = "0.1.1"; - format = "setuptools"; - - disabled = pythonOlder "3.7"; - - src = fetchFromGitHub { - owner = "Google"; - repo = "google-reauth-python"; - rev = "refs/tags/${version}"; - hash = "sha256-J7GVh+iY+69rFzf4hN/KLFZMZ1/S3CL5TZ7SsP5Oy3g="; - }; - - propagatedBuildInputs = [ - oauth2client - pyu2f - ]; - - nativeCheckInputs = [ - mock - pytestCheckHook - ]; - - pythonImportsCheck = [ "google_reauth" ]; - - meta = with lib; { - description = "Auth plugin allowing use the use of OAuth 2.0 credentials for Google Cloud Storage"; - homepage = "https://github.com/Google/google-reauth-python"; - changelog = "https://github.com/google/google-reauth-python/releases/tag/${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index 9ee37c81127a..69454f74151d 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -232,6 +232,7 @@ mapAliases ({ glances = throw "glances has moved to pkgs.glances"; # added 2020-20-28 glasgow = throw "glasgow has been promoted to a top-level attribute name: `pkgs.glasgow`"; # added 2023-02-05 globre = throw "globre was removed, because it was disabled on all python version since 3.7 and last updated in 2020."; # added 2024-05-13 + google-reauth = throw "google-reauth has been removed because the upstream repository was archived in 2023"; # Added 2024-10-04 google_api_python_client = google-api-python-client; # added 2021-03-19 googleapis_common_protos = googleapis-common-protos; # added 2021-03-19 google-apitools = throw "google-apitools was removed because it is deprecated and unsupported by upstream"; # added 2023-02-25 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 78749813f9fe..9630a526a506 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5278,8 +5278,6 @@ self: super: with self; { google-re2 = callPackage ../development/python-modules/google-re2 { }; - google-reauth = callPackage ../development/python-modules/google-reauth { }; - google-resumable-media = callPackage ../development/python-modules/google-resumable-media { }; google-search-results = callPackage ../development/python-modules/google-search-results { };