9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
60 lines
1.4 KiB
Nix
60 lines
1.4 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, google-api-core
|
|
, google-cloud-testutils
|
|
, mock
|
|
, proto-plus
|
|
, protobuf
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "google-cloud-videointelligence";
|
|
version = "2.11.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-qWpj8ATCcGj0WyJ6ZidfimqMPs0Gu1gfkvppiX1bF5c=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
google-api-core
|
|
proto-plus
|
|
protobuf
|
|
] ++ google-api-core.optional-dependencies.grpc;
|
|
|
|
nativeCheckInputs = [
|
|
google-cloud-testutils
|
|
mock
|
|
pytestCheckHook
|
|
pytest-asyncio
|
|
];
|
|
|
|
disabledTests = [
|
|
# require credentials
|
|
"test_annotate_video"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"google.cloud.videointelligence"
|
|
"google.cloud.videointelligence_v1"
|
|
"google.cloud.videointelligence_v1beta2"
|
|
"google.cloud.videointelligence_v1p1beta1"
|
|
"google.cloud.videointelligence_v1p2beta1"
|
|
"google.cloud.videointelligence_v1p3beta1"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Google Cloud Video Intelligence API client library";
|
|
homepage = "https://github.com/googleapis/python-videointelligence";
|
|
changelog = "https://github.com/googleapis/python-videointelligence/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
};
|
|
}
|