forked from magenta/magenta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
56 lines (49 loc) · 1.83 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
55
56
new_http_archive(
name = "pretty_midi",
build_file = "pretty_midi.BUILD",
sha256 = "f359310473b3e1ed070beda08fbbd7564dc7fed26aec00f06bdb5088394ae4d2",
strip_prefix = "pretty-midi-0.2.8/pretty_midi",
url = "https://github.com/craffel/pretty-midi/archive/0.2.8.tar.gz",
)
http_archive(
name = "com_google_protobuf",
sha256 = "40f009cb0c190816a52fc21d45c26558ee7d63c3bd511b326bd85739b2fd99a6",
strip_prefix = "protobuf-3.6.1",
url = "https://github.com/google/protobuf/releases/download/v3.6.1/protobuf-python-3.6.1.tar.gz",
)
new_http_archive(
name = "six_archive",
build_file = "six.BUILD",
sha256 = "105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a",
strip_prefix = "six-1.10.0",
url = "https://pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz#md5=34eed507548117b2ab523ab14b2f8b55",
)
bind(
name = "six",
actual = "@six_archive//:six",
)
bind(
name = "python_headers",
actual = "//util/python:python_headers",
)
new_http_archive(
name = "mido",
build_file = "mido.BUILD",
sha256 = "870d2f470ce1123324f9ef9676b6c9f2580293dd2a07fdfe00e20a47740e8b8e",
strip_prefix = "mido-1.2.6/mido",
url = "https://github.com/olemb/mido/archive/1.2.6.tar.gz",
)
new_http_archive(
name = "pix2pix_tensorflow",
build_file = "pix2pix_tensorflow.BUILD",
sha256 = "d00e0c8d65b4e3b0b61f5655976eaed0ea5b98b4aba1f8dea96809ec995b7b0e",
strip_prefix = "pix2pix-tensorflow-0.1/",
url = "https://github.com/dh7/pix2pix-tensorflow/archive/0.1.tar.gz",
)
new_http_archive(
name = "backports",
build_file = "backports-tempfile.BUILD",
sha256 = "597de6793dd1abcf2aea80ae81e8cbf0af4afb117cd48fa1dc3862f85f48c389",
strip_prefix = "backports.tempfile-1.0/src/backports",
url = "https://github.com/pjdelport/backports.tempfile/archive/v1.0.tar.gz",
)