nix(loadtest): remove pyjwt dependency

Let's use the same dependency when creating key material and when
creating tokens, no need to carry multiple different dependencies and
converting keys between them.
This commit is contained in:
Wolfgang Walther
2026-06-26 19:33:51 +00:00
parent 1446f11222
commit d470213857
2 changed files with 19 additions and 15 deletions
+1 -1
View File
@@ -312,7 +312,7 @@ let
genTargets =
writers.writePython3 "postgrest-gen-loadtest-targets"
{
libraries = [ python3Packages.pyjwt python3Packages.jwcrypto ];
libraries = [ python3Packages.jwcrypto ];
doCheck = false; # postgrest-style conflicts with this
}
(builtins.readFile ./generate_targets.py);