forked from mirrors/nixpkgs
python3Packages.google-cloud-appengine-logging: init at 0.1.0
This commit is contained in:
parent
310b8ea912
commit
7b9b6f1e91
|
@ -0,0 +1,45 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, google-api-core
|
||||
, grpc_google_iam_v1
|
||||
, mock
|
||||
, proto-plus
|
||||
, pytest-asyncio
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "google-cloud-appengine-logging";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0rkayy2qzsc70b0rdvzd2bxwp5f07rfqb95cyj57dkphq71mrrhw";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
google-api-core
|
||||
grpc_google_iam_v1
|
||||
proto-plus
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
mock
|
||||
pytestCheckHook
|
||||
pytest-asyncio
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"google.cloud.appengine_logging"
|
||||
"google.cloud.appengine_logging_v1"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Appengine logging client library";
|
||||
homepage = "https://github.com/googleapis/python-appengine-logging";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -2910,6 +2910,8 @@ in {
|
|||
|
||||
google-cloud-access-context-manager = callPackage ../development/python-modules/google-cloud-access-context-manager { };
|
||||
|
||||
google-cloud-appengine-logging = callPackage ../development/python-modules/google-cloud-appengine-logging { };
|
||||
|
||||
google-cloud-asset = callPackage ../development/python-modules/google-cloud-asset { };
|
||||
|
||||
google-cloud-automl = callPackage ../development/python-modules/google-cloud-automl { };
|
||||
|
|
Loading…
Reference in a new issue