mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 21:33:49 +00:00
python311Packages.google-cloud-shell: init at 1.9.2
This commit is contained in:
parent
54eea5a7f2
commit
d936f257c3
@ -0,0 +1,56 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, google-api-core
|
||||
, google-auth
|
||||
, mock
|
||||
, proto-plus
|
||||
, protobuf
|
||||
, pytest-asyncio
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "google-cloud-shell";
|
||||
version = "1.9.2";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-JLQea7+qWjomlQ1cbYJMou7u1eGwHNKgzqiUIUT0otY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
google-api-core
|
||||
google-auth
|
||||
proto-plus
|
||||
protobuf
|
||||
] ++ google-api-core.optional-dependencies.grpc;
|
||||
|
||||
nativeCheckInputs = [
|
||||
mock
|
||||
pytest-asyncio
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"google.cloud.shell"
|
||||
"google.cloud.shell_v1"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python Client for Cloud Shell";
|
||||
homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-shell";
|
||||
changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-shell-v${version}/packages/google-cloud-shell/CHANGELOG.md";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -4804,6 +4804,8 @@ self: super: with self; {
|
||||
|
||||
google-cloud-securitycenter = callPackage ../development/python-modules/google-cloud-securitycenter { };
|
||||
|
||||
google-cloud-shell = callPackage ../development/python-modules/google-cloud-shell { };
|
||||
|
||||
google-cloud-spanner = callPackage ../development/python-modules/google-cloud-spanner { };
|
||||
|
||||
google-cloud-speech = callPackage ../development/python-modules/google-cloud-speech { };
|
||||
|
Loading…
Reference in New Issue
Block a user