rust/hgcli/pyoxidizer.bzl
changeset 48217 e10f5dc7f5bf
parent 48216 7bc1beedd718
child 48248 7f23a472068f
--- a/rust/hgcli/pyoxidizer.bzl	Fri Sep 17 15:02:01 2021 -0400
+++ b/rust/hgcli/pyoxidizer.bzl	Fri Sep 17 15:07:30 2021 -0400
@@ -58,6 +58,20 @@
                 'site-packages',
             )
         )
+elif sys.platform == "darwin":
+    vi = sys.version_info
+
+    def joinuser(*args):
+        return os.path.expanduser(os.path.join(*args))
+
+    # Note: site.py uses `sys._framework` instead of hardcoding "Python" as the
+    #   3rd arg, but that is set to an empty string in an oxidized binary.  It
+    #   has a fallback to ~/.local when `sys._framework` isn't set, but we want
+    #   to match what the system python uses, so it sees pip installed stuff.
+    usersite = joinuser("~", "Library", "Python",
+                        "%d.%d" % vi[:2], "lib/python/site-packages")
+
+    sys.path.append(usersite)
 import hgdemandimport;
 hgdemandimport.enable();
 from mercurial import dispatch;