13 lines
191 B
Nix
13 lines
191 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home.packages = with pkgs; [
|
||
|
pipenv
|
||
|
python3
|
||
|
python38Packages.black
|
||
|
python38Packages.isort
|
||
|
python38Packages.pyflakes
|
||
|
python38Packages.pytest
|
||
|
];
|
||
|
}
|