hscloud/personal/q3k/BUILD
Bartosz Stebel cae27ecd99 Replace rules_pip with rules_python; use bazel built upstream grpc
instead of Python packages

As usual with Python sadness, the @pydeps wheels are built on the bazel
host, so stuffing them inside a container_image (or py_image) will cause
new and unexpected kinds of misery.

Change-Id: Id4e4d53741cf2da367f01aa15c21c133c5cf0dba
2020-07-08 18:55:34 +02:00

9 lines
173 B
Python

load("@pydeps//:requirements.bzl", "requirement")
py_binary(
name = "django-admin",
srcs = ["django-admin.py"],
deps = [
requirement("django"),
]
)