From 2f219876ba1b9944730499a301a5a63788a2ee3b Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sun, 29 Dec 2024 16:33:01 -0600 Subject: [PATCH] changed python version and added gdbm for namespaces --- flake.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/flake.nix b/flake.nix index d8f8d74..24fde4c 100644 --- a/flake.nix +++ b/flake.nix @@ -45,7 +45,7 @@ system = "x86_64-linux"; timeZone = "America/Chicago"; locale = "en_US.UTF-8"; - pythonVersion = "3.12.7"; + pythonVersion = "3.11.10"; # This is largely irrelevant because uv will handle it }; pkgs = args.nixpkgs.legacyPackages.${systemSettings.system}; @@ -111,12 +111,9 @@ packages = with pkgs; [ git + gdbm (pkgs.python312.withPackages (python-pkgs: with python-pkgs; [ - pip - setuptools - wheel - notebook - rich + notebook # kinda hacky, but needed so that jupyter notebook has some shared library it needs ])) ];