From 8665808f9e8464d0821f77ec14affcd5ab1ef665 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Sun, 25 Jun 2023 15:05:38 +0200 Subject: [PATCH] Disable the keyring I don't really need it at the moment and there is a bug with poetry. https://github.com/python-poetry/poetry/issues/5250 https://github.com/python-poetry/poetry/issues/1917 --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index 1d6ecc0..7318324 100644 --- a/flake.nix +++ b/flake.nix @@ -51,6 +51,7 @@ pkgs.python310Packages.pip (pkgs.writeScriptBin "dev" "${builtins.readFile ./dev.sh}") ]; + PYTHON_KEYRING_BACKEND="keyring.backends.fail.Keyring"; shellHook = '' export DJANGO_SETTINGS_MODULE=network_inventory.settings.local '';