From ed18ef78542280c7dfee998b644819cd5138d361 Mon Sep 17 00:00:00 2001 From: Lzebulon Date: Mon, 29 Sep 2025 18:04:46 +0200 Subject: [PATCH] fix: correct version of python-ldap --- shell.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/shell.nix b/shell.nix index 284fd53d..0a9b170f 100644 --- a/shell.nix +++ b/shell.nix @@ -2,10 +2,10 @@ pkgs.mkShell { buildInputs = with pkgs.buildPackages; [ ansible_2_16 - python312 - python312Packages.jinja2 - python312Packages.jmespath # plays/dhcp.yml - python312Packages.python-ldap + python313 + python313Packages.jinja2 + python313Packages.jmespath # plays/dhcp.yml + python313Packages.python-ldap ]; LANG="C.UTF-8"; }