nixos-config/modules/home/package/python.nix

19 lines
291 B
Nix
Raw Normal View History

2023-12-08 14:53:00 +01:00
{pkgs, ...}:
2023-11-05 17:56:55 +01:00
{
2023-12-08 14:53:00 +01:00
environment.systemPackages = with pkgs; [
(python311Full.withPackages(ps: with ps; [
2024-01-06 16:52:37 +01:00
requests
2023-12-08 14:53:00 +01:00
pygame
2023-12-18 11:33:34 +01:00
shapely
2024-01-06 17:21:06 +01:00
# github-email-explorer
2024-01-06 17:23:16 +01:00
jinja2
2024-01-06 17:24:02 +01:00
markupsafe
2024-01-06 17:21:06 +01:00
python-
requests
sendgrid
tabulate
2023-12-08 14:53:00 +01:00
]))
2023-11-05 11:40:44 +01:00
];
}