blob: 7d26b07d705db3968482b45bf4517802048637bf [file] [log] [blame]
Bob Badourb74aa592022-08-18 10:45:13 -07001package {
2 default_applicable_licenses: ["external_python_bumble_license"],
3}
4
5// Added automatically by a large-scale-change
6// See: http://go/android-license-faq
7license {
8 name: "external_python_bumble_license",
9 visibility: [":__subpackages__"],
10 license_kinds: [
11 "SPDX-license-identifier-Apache-2.0",
12 ],
13 license_text: [
14 "LICENSE",
15 ],
16}
17
David Duarte0885abe2022-08-10 18:11:24 +000018python_library_host {
19 name: "bumble",
20 srcs: [
21 "bumble/*.py",
22 "bumble/profiles/*.py",
23 "bumble/transport/*.py",
24 ],
25 libs: [
26 "py-cryptography",
27 ],
28}