From 39fe7cde05d4a203225c85d13fed3d43cf10f384 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 18 Mar 2024 07:49:16 +0000 Subject: [PATCH] Add mypy and black to standard python install Move ruff and isort to be python modules instead of standalone --- home/prog/default.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/home/prog/default.nix b/home/prog/default.nix index 9b1a1bdb..d07e6f57 100644 --- a/home/prog/default.nix +++ b/home/prog/default.nix @@ -5,11 +5,16 @@ nil # Python - isort - ruff poetry (python3.withPackages - (ps: with ps; [python-lsp-server])) + (ps: + with ps; [ + black + isort + ruff + mypy + python-lsp-server + ])) # Fortran gfortran