mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-09 18:25:53 +01:00
dd23846059
- [nexus] Switch bot - [bot] Added extra receivers functionality GitOrigin-RevId: 68fc32d3e79ff411758f54f435fe8680fc42dead
20 lines
486 B
Python
20 lines
486 B
Python
load("@pip_modules//:requirements.bzl", "requirement")
|
|
load("@rules_python//python:defs.bzl", "py_library")
|
|
|
|
py_library(
|
|
name = "aiopostgres",
|
|
srcs = glob(
|
|
["**/*.py"],
|
|
exclude = ["tests/**"],
|
|
),
|
|
srcs_version = "PY3",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
requirement("psycopg"),
|
|
requirement("psycopg-pool"),
|
|
requirement("psycopg-binary"),
|
|
requirement("tenacity"),
|
|
requirement("aiokit"),
|
|
],
|
|
)
|