From 845150825c8c15975f9f6921e90f1a43e76514cb Mon Sep 17 00:00:00 2001 From: Mohamed Gaber Date: Thu, 24 Oct 2024 10:57:58 +0300 Subject: [PATCH] hotfix: regression in nix/create-shell.nix --- nix/create-shell.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nix/create-shell.nix b/nix/create-shell.nix index ee11069a0..f344d6081 100644 --- a/nix/create-shell.nix +++ b/nix/create-shell.nix @@ -31,8 +31,7 @@ }: let openlane-env = ( python3.withPackages (pp: - with pp; - if include-openlane then [openlane] else openlane.propagatedBuildInputs + (if include-openlane then [openlane] else openlane.propagatedBuildInputs) ++ extra-python-packages ++ openlane-plugins) );