devshell/shells/python.nix

9 lines
139 B
Nix
Raw Permalink Normal View History

2023-12-08 13:30:37 +05:30
{ pkgs }: pkgs.mkShell {
packages = with pkgs; [
python3
python3Packages.black
nodePackages_latest.pyright
pipenv
];
}