8 lines
139 B
Nix
8 lines
139 B
Nix
{ pkgs }: pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
python3
|
|
python3Packages.black
|
|
nodePackages_latest.pyright
|
|
pipenv
|
|
];
|
|
}
|