From 705aacf65907768aa2a749660318735587cb86a0 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Thu, 27 Aug 2026 18:00:14 +0500 Subject: [PATCH] package-zip-archives: check runtime deps for python wrapper too --- nix/package-zip-archives.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nix/package-zip-archives.py b/nix/package-zip-archives.py index 2bde9e1e84..6c9f13daa4 100644 --- a/nix/package-zip-archives.py +++ b/nix/package-zip-archives.py @@ -264,6 +264,9 @@ def package_python_wrapper( # TODO: packs qt libs also? stage_runtime_payload(ifcopenshell_install_dir, ifcopenshell_dir) + if not is_platform("MAC"): + check_runtime_dependencies(ifcopenshell_dir) + zip_path = output_dir / f"ifcopenshell-{py_version_major}-{VERSION}-{github_sha}-{arch_suffix}.zip" run("zip", "-y", "-r", "-qq", "-1", str(zip_path), "ifcopenshell", cwd=package_dir) shutil.rmtree(package_dir)