blob: 4dff787e4bf717bf0088980d62c2eeae06c2e33b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
{
buildPythonPackage,
fetchFromGitHub,
gitUpdater,
google-api-core,
google-auth,
lib,
proto-plus,
protobuf,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "google-geo-type";
version = "3.31.3";
pyproject = true;
src = fetchFromGitHub {
owner = "googleapis";
repo = "google-cloud-python";
tag = "google-cloud-build-v${version}";
hash = "sha256-qQ+8X6I8lt4OTgbvODsbdab2dYUk0wxWsbaVT2T651U=";
};
sourceRoot = "${src.name}/packages/google-geo-type";
build-system = [ setuptools ];
dependencies = [
google-api-core
google-auth
proto-plus
protobuf
]
++ google-api-core.optional-dependencies.grpc;
pythonImportsCheck = [ "google.geo.type" ];
nativeCheckInputs = [
pytestCheckHook
];
passthru.updateScript = gitUpdater { rev-prefix = "google-geo-type-v"; };
meta = {
changelog = "https://github.com/googleapis/google-cloud-python/blob/${src.tag}/packages/google-geo-type/CHANGELOG.md";
description = "Google Geo Type API client library";
homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-geo-type";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|