From 14b2eb48abad5554df9b65f99db84e40a1a96f56 Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Mon, 17 Mar 2025 10:16:18 +0000 Subject: [PATCH] nix/shell.nix: add PYTHONPYCACHEPREFIX to environment --- nix/shell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/shell.nix b/nix/shell.nix index 49dbcea9..d574ebf5 100644 --- a/nix/shell.nix +++ b/nix/shell.nix @@ -38,6 +38,7 @@ pkgs.mkShellNoCC { pwd=$(pwd) export PYTHONPATH=$pwd + export PYTHONPYCACHEPREFIX=$HOME/.cache/pycache export PATH=$pwd/cmds:$pwd/.bin-override:$HOME/.local/bin:$PATH export LANG="en_US.UTF-8"