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 c8fe065368cb..dbc46b3e6323 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -235,6 +235,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 9e315dfd9be9..fcdc4a105d64 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5272,8 +5272,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 { };