t14_legacy_config/home/shenvs/python.nix

12 lines
161 B
Nix
Raw Normal View History

2022-08-26 05:43:18 +02:00
{pkgs, ...}:
{
2022-08-30 07:10:29 +02:00
static = true;
2022-08-26 05:43:18 +02:00
packages = with pkgs; [
2022-08-16 04:36:17 +02:00
pipenv
(python310.withPackages ( packages: with packages; [
2023-02-13 16:24:19 +01:00
requests
2022-08-16 04:36:17 +02:00
]))
];
}