nixos-config/modules/home/package/python.nix
2024-01-06 17:24:02 +01:00

18 lines
291 B
Nix

{pkgs, ...}:
{
environment.systemPackages = with pkgs; [
(python311Full.withPackages(ps: with ps; [
requests
pygame
shapely
# github-email-explorer
jinja2
markupsafe
python-
requests
sendgrid
tabulate
]))
];
}