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; [
|
2024-01-25 17:06:17 +01:00
|
|
|
(python311Full.withPackages(ps: with ps; [
|
|
|
|
|
requests
|
|
|
|
|
pygame
|
|
|
|
|
shapely
|
|
|
|
|
]))
|
2023-11-05 11:40:44 +01:00
|
|
|
];
|
|
|
|
|
}
|