From 2f83b4f20629911168cbb480f6d47e65cecded31 Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Fri, 4 Aug 2023 15:41:14 +0100 Subject: [PATCH] Enable debug logging for poetry --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index b89b6d9218..a07a619a2b 100644 --- a/flake.nix +++ b/flake.nix @@ -122,7 +122,7 @@ languages.python.poetry.activate.enable = true; # Install all extra Python dependencies; this is needed to run the unit # tests and utilitise all Synapse features. - languages.python.poetry.install.arguments = ["--extras all"]; + languages.python.poetry.install.arguments = ["-vvv" "--extras all"]; # Install the 'matrix-synapse' package from the local checkout. languages.python.poetry.install.installRootPackage = true;