11 lines
193 B
Nix
11 lines
193 B
Nix
{mkShell, python3, ruff, ruff-lsp}: let
|
|
python3' = python3.withPackages (ps: []);
|
|
in
|
|
mkShell {
|
|
name = "python-env";
|
|
packages = [
|
|
python3'
|
|
ruff
|
|
ruff-lsp
|
|
];
|
|
}
|