NixOS/shells/python.nix
2026-02-15 11:10:32 -05:00

10 lines
107 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
buildInputs = with pkgs; [
python3
uv
];
}