From d729ca13773d870c51c49cac801457e522260123 Mon Sep 17 00:00:00 2001 From: Ryan Yin Date: Tue, 16 Sep 2025 10:47:12 +0800 Subject: [PATCH] refacotor: python packages --- home/base/tui/dev-tools.nix | 1 - home/base/tui/editors/packages.nix | 13 +++++++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/home/base/tui/dev-tools.nix b/home/base/tui/dev-tools.nix index 637584c1..37e09672 100644 --- a/home/base/tui/dev-tools.nix +++ b/home/base/tui/dev-tools.nix @@ -36,7 +36,6 @@ devbox bfg-repo-cleaner # remove large files from git history k6 # load testing tool - protobuf # protocol buffer compiler # solve coding extercises - learn by doing exercism diff --git a/home/base/tui/editors/packages.nix b/home/base/tui/editors/packages.nix index b265a2a3..125c2945 100644 --- a/home/base/tui/editors/packages.nix +++ b/home/base/tui/editors/packages.nix @@ -63,14 +63,15 @@ vscode-extensions.vadimcn.vscode-lldb.adapter # codelldb - debugger #-- python - pipx # Install and Run Python Applications in Isolated Environments - uv # python project package manager - pyright # python language server (python313.withPackages ( ps: with ps; [ + # python language server + pyright ruff + + pipx # Install and Run Python Applications in Isolated Environments black # python formatter - # debugpy + uv # python project package manager # my commonly used python packages jupyter @@ -80,6 +81,10 @@ pyquery pyyaml boto3 + + # misc + protobuf # protocol buffer compiler + numpy ] ))