From 983b14ad0961a553b51f6a15114b9c4b60341596 Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Fri, 13 May 2022 07:32:26 -0400 Subject: [PATCH] shapely: use python3Minimal to ensure ast.unparse exists --- overrides/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overrides/default.nix b/overrides/default.nix index 83e5bb3..ba9b855 100644 --- a/overrides/default.nix +++ b/overrides/default.nix @@ -1891,7 +1891,7 @@ lib.composeManyExtensions [ # Fix library paths postPatch = old.postPatch or "" + '' - ${self.python.pythonForBuild.interpreter} ${./shapely-rewrite.py} shapely/geos.py + ${pkgs.python3Minimal.interpreter} ${./shapely-rewrite.py} shapely/geos.py ''; } );