Merge pull request #274436 from fabaff/google-cloud-vision-bump

python311Packages.google-cloud-vision: 3.4.5 -> 3.5.0
This commit is contained in:
Fabian Affolter 2023-12-15 15:34:06 +01:00 committed by GitHub
commit 6b1e2b3f2c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,20 +8,25 @@
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "google-cloud-vision";
version = "3.4.5";
format = "setuptools";
version = "3.5.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-DfgkGrJ3GZuRnKODen3oUFk2P+oOPWYAYIcL587/wEc=";
hash = "sha256-dwO/R8iyEIYw0qJ15X9DJuPAceZmISrZorPVqAkMZ2c=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
google-api-core
proto-plus
@ -44,6 +49,11 @@ buildPythonPackage rec {
"google.cloud.vision_v1p4beta1"
];
disabledTests = [
# Tests require PROJECT_ID
"test_list_products"
];
meta = with lib; {
description = "Cloud Vision API API client library";
homepage = "https://github.com/googleapis/python-vision";