mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-23 08:57:34 +01:00
dd23846059
- [nexus] Switch bot - [bot] Added extra receivers functionality GitOrigin-RevId: 68fc32d3e79ff411758f54f435fe8680fc42dead
19 lines
531 B
Python
19 lines
531 B
Python
load("@pip_modules//:requirements.bzl", "requirement")
|
|
load("@rules_python//python:defs.bzl", "py_library")
|
|
|
|
py_library(
|
|
name = "aioclient",
|
|
srcs = glob(["**/*.py"]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
requirement("grpcio"),
|
|
requirement("lru-dict"),
|
|
requirement("tenacity"),
|
|
requirement("aiogrpcclient"),
|
|
requirement("aiokit"),
|
|
"//nexus/meta_api/proto:grpc_py",
|
|
"//nexus/meta_api/proto:proto_py",
|
|
"//nexus/models/proto:proto_py",
|
|
],
|
|
)
|