• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("@pip//:requirements.bzl", "requirement")
2load("@rules_python//python:defs.bzl", "py_library")
3
4py_library(
5    name = "my_lib",
6    srcs = ["__init__.py"],
7    visibility = ["@//tests:__pkg__"],
8    deps = [requirement("websockets")],
9)
10