templates/python/nixpkgs/shell.nix
Kiana Sheibani afb4b62827
change basically everything
It's a good thing that I'm not collaborating with anyone on this
repository, because this is REALLY bad practice.
2025-11-23 22:43:24 -05:00

8 lines
126 B
Nix

{ mkShell
, python3
}:
mkShell {
inputsFrom = [ python3.buildEnv.env ];
packages = [ python3.pkgs.python-lsp-server ];
}