1
Files
dotfiles/hosts/default/home/python.nix

19 lines
261 B
Nix
Raw Normal View History

2025-01-26 17:15:47 +05:30
{ pkgs, ... }:
2024-11-07 11:51:15 +05:30
{
home.packages = [
pkgs.uv
(pkgs.python313.withPackages (
2024-11-07 11:51:15 +05:30
ps: with ps; [
marimo
2024-11-07 11:51:15 +05:30
python-lsp-server
python-lsp-ruff
pandas
httpx
2024-11-07 11:51:15 +05:30
xlrd
xlwt
2025-02-02 13:21:47 +05:30
sympy
2024-11-07 11:51:15 +05:30
]
))
];
}