Unverified Commit a6aabfd8 authored by seth's avatar seth
Browse files

python312Packages.google-reauth: drop

parent e385a853
Loading
Loading
Loading
Loading
+0 −45
Original line number Diff line number Diff line
{
  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 ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -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
+0 −2
Original line number Diff line number Diff line
@@ -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 { };