-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
54 lines (45 loc) · 1.71 KB
/
WORKSPACE
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
workspace(name = "com_nickjpgeorge_fhirprotoexamples")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_jvm_external",
strip_prefix = "rules_jvm_external-2.1",
sha256 = "515ee5265387b88e4547b34a57393d2bcb1101314bcc5360ec7a482792556f42",
url = "https://github.com/bazelbuild/rules_jvm_external/archive/2.1.zip",
)
http_archive(
name = "io_bazel_rules_closure",
sha256 = "7d206c2383811f378a5ef03f4aacbcf5f47fd8650f6abbc3fa89f3a27dd8b176",
strip_prefix = "rules_closure-0.10.0",
urls = [
"https://github.com/bazelbuild/rules_closure/archive/0.10.0.tar.gz",
],
)
http_archive(
name = "rules_python",
sha256 = "fa53cc0afe276d8f6675df1a424592e00e4f37b2a497e48399123233902e2e76",
strip_prefix = "rules_python-0.0.1",
urls = ["https://github.com/bazelbuild/rules_python/archive/0.0.1.tar.gz"],
)
http_archive(
name = "org_tensorflow",
sha256 = "49b5f0495cd681cbcb5296a4476853d4aea19a43bdd9f179c928a977308a0617",
strip_prefix = "tensorflow-2.0.0",
urls = [
"https://github.com/tensorflow/tensorflow/archive/v2.0.0.tar.gz",
],
)
http_archive(
name = "com_google_fhir",
sha256 = "9098bf157f14075f7ce225d256aebe1bd083f53c7159fc3962d2e8e3553a20cb",
strip_prefix = "fhir-a8fa1dc118fcc2ae0832487c3919ad0c72e9b888",
urls = [
"https://github.com/google/fhir/archive/a8fa1dc118fcc2ae0832487c3919ad0c72e9b888.zip",
],
)
load("@rules_python//python:pip.bzl", "pip_import")
pip_import(
name = "fhir_bazel_pip_dependencies",
requirements = "@com_google_fhir//bazel:requirements.txt",
)
load("@com_google_fhir//bazel:dependencies.bzl", "fhir_proto_dependencies")
fhir_proto_dependencies()