2024-12-04 16:57:56 +00:00
|
|
|
{ pkgs, ... }:
|
|
|
|
# MPLBACKEND
|
|
|
|
{
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
(python3.withPackages (
|
|
|
|
ps: with ps; [
|
|
|
|
python-lsp-server
|
|
|
|
pylsp-rope
|
|
|
|
rope
|
2024-12-12 10:10:29 +00:00
|
|
|
isort
|
|
|
|
flake8
|
2024-12-04 16:57:56 +00:00
|
|
|
mypy
|
2024-12-11 08:19:24 +00:00
|
|
|
pyyaml
|
2024-12-04 16:57:56 +00:00
|
|
|
numpy
|
|
|
|
xarray
|
2024-12-11 08:18:39 +00:00
|
|
|
netcdf4
|
2024-12-04 16:57:56 +00:00
|
|
|
matplotlib
|
|
|
|
]
|
|
|
|
))
|
|
|
|
ruff
|
|
|
|
];
|
|
|
|
xdg.configFile."ruff/pyproject.toml".source = ./ruff.toml;
|
|
|
|
}
|