20 lines
321 B
Nix
20 lines
321 B
Nix
|
{ pkgs, ... }:
|
||
|
# MPLBACKEND
|
||
|
{
|
||
|
home.packages = with pkgs; [
|
||
|
(python3.withPackages (
|
||
|
ps: with ps; [
|
||
|
python-lsp-server
|
||
|
pylsp-rope
|
||
|
rope
|
||
|
mypy
|
||
|
numpy
|
||
|
xarray
|
||
|
matplotlib
|
||
|
]
|
||
|
))
|
||
|
ruff
|
||
|
];
|
||
|
xdg.configFile."ruff/pyproject.toml".source = ./ruff.toml;
|
||
|
}
|