From fdce27240276b42f995e0278542e46a98065e320 Mon Sep 17 00:00:00 2001 From: Don Harper Date: Mon, 10 Mar 2025 06:26:40 -0500 Subject: [PATCH] workstation | tweek python libs --- hosts/workstation/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/hosts/workstation/default.nix b/hosts/workstation/default.nix index f1c1dc4..cc2be57 100644 --- a/hosts/workstation/default.nix +++ b/hosts/workstation/default.nix @@ -2,13 +2,14 @@ let my-python-packages = python-packages: with python-packages; [ - pip # pipx - python-dateutil distutils - setuptools - requests docx2txt + numpy + pip + python-dateutil + requests + setuptools ]; python-with-my-packages = pkgs.python3Full.withPackages my-python-packages; in {