feat/refactor: add mypy, change python39Packages format

This commit is contained in:
Infinidoge 2021-09-26 01:06:42 -04:00
parent eb1d19c382
commit 81aff46374

View file

@ -1,9 +1,13 @@
{ pkgs, ... }: { { pkgs, lib, ... }: {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; lib.lists.flatten [
python3 python3
python310 (with python39Packages; [
python39Packages.pip pip
python39Packages.black black
mypy
])
python-language-server python-language-server
python310
]; ];
} }