yesod-mirror/experimental/users/acmcarther/llm/stt/BUILD.bazel
Copybara 8157b39ea4
Some checks failed
CI / build (push) Failing after 12s
Project import generated by Copybara.
GitOrigin-RevId: 6370f6ea785709295b6abcf9c60717cacf3ac432
2026-01-20 21:26:21 +00:00

20 lines
542 B
Text

load("@aspect_rules_py//py:defs.bzl", "py_binary", "py_library", "py_pex_binary", "py_unpacked_wheel")
load("@pip_third_party//:requirements.bzl", "requirement")
py_binary(
name = "basic_recorder_main",
srcs = ["basic_recorder.py"],
deps = [
requirement("sounddevice"),
requirement("pyqt6"),
requirement("pyqt6-qt6"),
requirement("pyqt6-sip"),
requirement("numpy"),
requirement("scipy"),
],
)
py_pex_binary(
name = "basic_recorder",
binary = ":basic_recorder_main",
)