9 lines
177 B
Nix
9 lines
177 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
ruff
|
|
poetry
|
|
python312
|
|
python312Packages.python-lsp-server
|
|
];
|
|
}
|