12 lines
168 B
Nix
12 lines
168 B
Nix
|
{pkgs, ...}: {
|
||
|
static = true;
|
||
|
|
||
|
packages = with pkgs; [
|
||
|
pipenv
|
||
|
(python310.withPackages (packages:
|
||
|
with packages; [
|
||
|
setuptools
|
||
|
]))
|
||
|
];
|
||
|
}
|