forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repositories_extra.bzl
67 lines (64 loc) · 2.43 KB
/
repositories_extra.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
load("@rules_python//python:repositories.bzl", "py_repositories")
load("@rules_python//python:pip.bzl", "pip3_import", "pip_repositories")
# Python dependencies.
def _python_deps():
py_repositories()
pip_repositories()
pip3_import(
# project_name = "PyYAML",
# project_url = "https://github.com/yaml/pyyaml",
# version = "5.3.1",
# use_category = ["other"],
# cpe = "cpe:2.3:a:pyyaml:pyyaml:*",
name = "config_validation_pip3",
requirements = "@envoy//tools/config_validation:requirements.txt",
extra_pip_args = ["--require-hashes"],
)
pip3_import(
# project_name = "Jinja",
# project_url = "http://palletsprojects.com/p/jinja",
# version = "2.11.2",
# use_category = ["test"],
# cpe = "cpe:2.3:a:palletsprojects:jinja:*",
name = "configs_pip3",
requirements = "@envoy//configs:requirements.txt",
extra_pip_args = ["--require-hashes"],
)
pip3_import(
# project_name = "Jinja",
# project_url = "http://palletsprojects.com/p/jinja",
# version = "2.11.2",
# use_category = ["test"],
# cpe = "cpe:2.3:a:palletsprojects:jinja:*",
name = "kafka_pip3",
requirements = "@envoy//source/extensions/filters/network/kafka:requirements.txt",
extra_pip_args = ["--require-hashes"],
)
pip3_import(
name = "headersplit_pip3",
requirements = "@envoy//tools/envoy_headersplit:requirements.txt",
extra_pip_args = ["--require-hashes"],
)
pip3_import(
# project_name = "PyYAML",
# project_url = "https://github.com/yaml/pyyaml",
# version = "5.3.1",
# use_category = ["other"],
# cpe = "cpe:2.3:a:pyyaml:pyyaml:*",
name = "protodoc_pip3",
requirements = "@envoy//tools/protodoc:requirements.txt",
extra_pip_args = ["--require-hashes"],
)
pip3_import(
# project_name = "Apache Thrift",
# project_url = "http://thrift.apache.org/",
# version = "0.11.0",
# use_category = ["dataplane"],
# cpe = "cpe:2.3:a:apache:thrift:*",
name = "thrift_pip3",
requirements = "@envoy//test/extensions/filters/network/thrift_proxy:requirements.txt",
extra_pip_args = ["--require-hashes"],
)
# Envoy deps that rely on a first stage of dependency loading in envoy_dependencies().
def envoy_dependencies_extra():
_python_deps()