-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathhatch_build.py
41 lines (31 loc) · 1.55 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
from __future__ import annotations
import os
import shutil
from functools import cached_property
from importlib.metadata import distribution
from typing import Any
import _cffi_backend # noqa: PLC2701
from hatchling.builders.hooks.plugin.interface import BuildHookInterface
class CustomBuildHook(BuildHookInterface):
"""
A build hook that copies the `_cffi_backend` extension module into the wheel so that
the `cffi` package is not required as a runtime dependency.
"""
LICENSE_NAME = "LICENSE-cffi"
@cached_property
def local_cffi_license(self) -> str:
return os.path.join(self.root, self.LICENSE_NAME)
def initialize(self, version: str, build_data: dict[str, Any]) -> None: # noqa: ARG002
cffi_shared_lib = _cffi_backend.__file__
relative_path = f"coincurve/{os.path.basename(cffi_shared_lib)}"
build_data["force_include"][cffi_shared_lib] = relative_path
dist = distribution("cffi")
license_files = [f for f in dist.files if f.name == "LICENSE" and f.parent.name.endswith(".dist-info")]
if len(license_files) != 1:
message = f"Expected exactly one LICENSE file in cffi distribution, got {len(license_files)}"
raise RuntimeError(message)
license_file = license_files[0]
shutil.copy2(license_file.locate(), self.local_cffi_license)
self.metadata.core.license_files.append(self.LICENSE_NAME)
def finalize(self, version: str, build_data: dict[str, Any], artifact: str) -> None: # noqa: ARG002
os.remove(self.local_cffi_license)