NOflake/extras/ssrov-laptop.nix

49 lines
1.2 KiB
Nix
Raw Permalink Normal View History

2024-06-13 13:30:29 -07:00
{pkgs, ...}: {
2025-04-30 19:29:00 -07:00
users.users.tao.packages = with pkgs; [
(python311Full.withPackages (ps:
with ps; [
# bokeh
# datashader
# hvplot
# ipywidgets
# ipywidgets
# linkify-it-py
# markdown-it-py
# mdit-py-plugins
# nbclient
# numpy
# pandas
# panel
# plotly
# pyparsing
# pyserial
# scikit-learn
# scipy
# streamz
# tkinter
jupyter
2024-06-13 13:30:29 -07:00
2025-04-30 19:29:00 -07:00
# pyserial
bokeh
datashader
hvplot
# ipython_blocking
ipywidgets
nbclient
numpy
pandas
panel
plotly
pyparsing
scikit-learn
scipy
streamz
2024-06-13 13:30:29 -07:00
2025-04-30 19:29:00 -07:00
tkinter
linkify-it-py
markdown-it-py
mdit-py-plugins
]))
];
2024-06-13 13:30:29 -07:00
}