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-05-04 02:35:50 +02:00
|
|
|
pipenv
|
|
|
|
(python310.withPackages ( packages: with packages; [
|
2022-05-04 07:25:56 +02:00
|
|
|
setuptools
|
2022-08-26 05:43:18 +02:00
|
|
|
]))
|
2022-05-04 02:35:50 +02:00
|
|
|
];
|
|
|
|
}
|