python311Packages.google-cloud-vision: 3.4.5 -> 3.5.0
Changelog: https://github.com/googleapis/python-vision/blob/v3.5.0/CHANGELOG.md
This commit is contained in:
parent
ee1148c372
commit
3c7a3116e3
1 changed files with 13 additions and 3 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue