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