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, ... }: {
environment.systemPackages = with pkgs; [
{ pkgs, lib, ... }: {
environment.systemPackages = with pkgs; lib.lists.flatten [
python3
python310
python39Packages.pip
python39Packages.black
(with python39Packages; [
pip
black
mypy
])
python-language-server
python310
];
}