mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-19 08:07:48 +01:00
8472f27ec5
GitOrigin-RevId: ddf02e70d2827c048db49b687ebbcdcc67807ca6
14 lines
365 B
Python
14 lines
365 B
Python
load("@pip_modules_external//:requirements.bzl", "requirement")
|
|
load("@rules_python//python:defs.bzl", "py_binary")
|
|
|
|
py_binary(
|
|
name = "make_deb",
|
|
srcs = ["make_deb.py"],
|
|
srcs_version = "PY2AND3",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@bazel_tools//tools/build_defs/pkg:archive",
|
|
requirement("python-gflags"),
|
|
],
|
|
)
|