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

19 lines
312 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:54:07 +01:00
# jinja2
# markupsafe
# python-http-client
2024-01-06 17:21:06 +01:00
requests
2024-01-06 17:54:07 +01:00
# sendgrid
# tabulate
2023-12-08 14:53:00 +01:00
]))
2023-11-05 11:40:44 +01:00
];
}