{ pkgs, lib, ... }: let buildInputs = with pkgs; [ stdenv.cc.cc libuv zlib ]; in { env = { LD_LIBRARY_PATH = "${lib.makeLibraryPath buildInputs}"; }; languages.python = { enable = true; uv = { enable = true; sync.enable = true; }; }; scripts.hello.exec = "uv run python hello.py"; enterShell = '' . .devenv/state/venv/bin/activate hello ''; }