From c9269c66440f2ab6f65a27788f77c98c5fa32f9e Mon Sep 17 00:00:00 2001 From: Timo Bingmann Date: Thu, 20 Nov 2025 22:03:36 -0800 Subject: [PATCH] develop/packages: fix Python3 --- system/develop/packages.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/system/develop/packages.nix b/system/develop/packages.nix index 53b62dd..ac1df71 100644 --- a/system/develop/packages.nix +++ b/system/develop/packages.nix @@ -42,10 +42,16 @@ # === PYTHON DEVELOPMENT === # Python ecosystem and tools - python3 # Python interpreter - python3Packages.pip # Python package installer - python3Packages.virtualenv # Virtual environment management - python3Packages.poetry-core # Modern Python dependency management + (python3.withPackages (ps: with ps; [ + pip # Python package installer + virtualenv # Virtual environment management + poetry-core # Modern Python dependency management + requests + beautifulsoup4 + numpy + pandas + pyqt5 + ])) # === C/C++ DEVELOPMENT === # LLVM toolchain and language server support