-
Notifications
You must be signed in to change notification settings - Fork 506
/
hatch_build.py
49 lines (42 loc) · 1.63 KB
/
hatch_build.py
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
import os
import sys
from urllib.request import urlopen
from hatchling.builders.hooks.plugin.interface import BuildHookInterface
JUPYTERLAB_APPUTILS_VERSION = "3.2.8"
JUPYTERLAB_THEME_LIGHT_VERSION = "3.2.8"
CSS_FILES = [
(
f"https://unpkg.com/@jupyterlab/apputils@{JUPYTERLAB_APPUTILS_VERSION}/style/materialcolors.css",
"materialcolors.css",
),
(
f"https://unpkg.com/@jupyterlab/theme-light-extension@{JUPYTERLAB_THEME_LIGHT_VERSION}/style/variables.css",
"labvariables.css",
),
]
class CustomBuildHook(BuildHookInterface):
def initialize(self, version, build_data):
for url, filename in CSS_FILES:
directory = os.path.join(
"share", "jupyter", "voila", "templates", "base", "static"
)
dest = os.path.join(directory, filename)
if not os.path.exists(directory):
os.makedirs(directory)
if not os.path.exists(".git") and os.path.exists(dest):
# not running from git, nothing to do
return
print("Downloading CSS: %s" % url)
try:
css = urlopen(url).read()
except Exception as e:
msg = f"Failed to download css from {url}: {e}"
print(msg, file=sys.stderr)
if os.path.exists(dest):
print("Already have CSS: %s, moving on." % dest)
else:
raise OSError("Need CSS to proceed.")
return
with open(dest, "wb") as f:
f.write(css)
print("Downloaded Notebook CSS to %s" % dest)