From 81aff46374f8285a5549bff7b06241702c4de96c Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 26 Sep 2021 01:06:42 -0400 Subject: [PATCH] feat/refactor: add mypy, change python39Packages format --- profiles/develop/programming/python.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/profiles/develop/programming/python.nix b/profiles/develop/programming/python.nix index 2cfe4c9..79b11d7 100644 --- a/profiles/develop/programming/python.nix +++ b/profiles/develop/programming/python.nix @@ -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 ]; }