27 lines
411 B
Nix
27 lines
411 B
Nix
{pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
(python311.withPackages (ps:
|
|
with ps; [
|
|
i3ipc
|
|
requests
|
|
ipython
|
|
six
|
|
psutil
|
|
pynvml
|
|
pyqtgraph
|
|
pyqt6
|
|
pyyaml
|
|
pillow
|
|
jedi
|
|
libcst
|
|
wheel
|
|
jupyterlab
|
|
datasets
|
|
debugpy
|
|
]))
|
|
isort
|
|
uv
|
|
python311
|
|
ruff
|
|
];
|
|
}
|