We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e29a9cf commit 5971d2bCopy full SHA for 5971d2b
1 file changed
shell.nix
@@ -19,10 +19,7 @@ let
19
with pkgs;
20
(symlinkJoin {
21
name = "python";
22
- paths = [
23
- # Enable compiler optimizations when in production
24
- (if isDevelopment then python313 else python313.override { enableOptimizations = true; })
25
- ];
+ paths = [ python313 ];
26
buildInputs = [ makeWrapper ];
27
postBuild = ''
28
wrapProgram "$out/bin/python3.13" --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath pythonLibs}"
0 commit comments