ithon/shell.nix
2024-11-02 15:38:15 -04:00

8 lines
No EOL
212 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [
python312
uv
];
}