mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-12 05:16:25 +03:00
python312Packages.google-reauth: drop (#346557)
This commit is contained in:
commit
3bf7da161b
3 changed files with 1 additions and 47 deletions
|
@ -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 ];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -235,6 +235,7 @@ mapAliases ({
|
||||||
glances = throw "glances has moved to pkgs.glances"; # added 2020-20-28
|
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
|
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
|
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
|
google_api_python_client = google-api-python-client; # added 2021-03-19
|
||||||
googleapis_common_protos = googleapis-common-protos; # 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
|
google-apitools = throw "google-apitools was removed because it is deprecated and unsupported by upstream"; # added 2023-02-25
|
||||||
|
|
|
@ -5272,8 +5272,6 @@ self: super: with self; {
|
||||||
|
|
||||||
google-re2 = callPackage ../development/python-modules/google-re2 { };
|
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-resumable-media = callPackage ../development/python-modules/google-resumable-media { };
|
||||||
|
|
||||||
google-search-results = callPackage ../development/python-modules/google-search-results { };
|
google-search-results = callPackage ../development/python-modules/google-search-results { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue