python310Packages.google-cloud-websecurityscanner: 1.9.2 -> 1.10.0

Changelog: https://github.com/googleapis/python-websecurityscanner/blob/v1.10.0/CHANGELOG.md
This commit is contained in:
Fabian Affolter
2022-12-28 18:22:57 +01:00
parent 5461f90464
commit 0ed1580764
@@ -1,34 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, google-api-core
, libcst
, mock
, protobuf
, proto-plus
, protobuf
, pytest-asyncio
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "google-cloud-websecurityscanner";
version = "1.9.2";
version = "1.10.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-fUnoV5I9kMwC9zUdsHit6MbIYFV+3E+GT76vwEmzNNs=";
hash = "sha256-93ijizxgVFxXzj8IzxrgzzXTQKl7UH3egvL41HVk5is=";
};
propagatedBuildInputs = [
google-api-core
libcst
protobuf
proto-plus
];
protobuf
] ++ google-api-core.optional-dependencies.grpc;
checkInputs = [
mock