b41113241d
GitOrigin-RevId: ae1dc133ea5f1538d035af41e5ddbc2ebcb67b90
53 lines
1 KiB
Nix
53 lines
1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, google-api-core
|
|
, libcst
|
|
, mock
|
|
, proto-plus
|
|
, pytestCheckHook
|
|
, pytest-asyncio
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "google-cloud-vision";
|
|
version = "3.1.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-ZPuKE2GNUWD26nR+dlKAVDpQViCTCFyx+8W/448MgX4=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
libcst
|
|
google-api-core
|
|
proto-plus
|
|
];
|
|
|
|
checkInputs = [
|
|
mock
|
|
pytestCheckHook
|
|
pytest-asyncio
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"google.cloud.vision"
|
|
"google.cloud.vision_helpers"
|
|
"google.cloud.vision_v1"
|
|
"google.cloud.vision_v1p1beta1"
|
|
"google.cloud.vision_v1p2beta1"
|
|
"google.cloud.vision_v1p3beta1"
|
|
"google.cloud.vision_v1p4beta1"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Cloud Vision API API client library";
|
|
homepage = "https://github.com/googleapis/python-vision";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
};
|
|
}
|