Files
notes/CS1527/assessment-2/shell.nix
2024-05-01 17:42:07 +01:00

4 lines
182 B
Nix

{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
packages = [(pkgs.python312.withPackages (p: with p; [ python-lsp-server pytest pytest-watch black ])) pkgs.nodePackages.pyright];
}