4 lines
182 B
Nix
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];
|
|
}
|