diff options
author | natsukium | 2023-11-25 19:11:42 +0900 |
---|---|---|
committer | Martin Weinelt | 2023-12-20 20:15:31 +0100 |
commit | 2a2b137e325b14d0d97763d953f388bb15ecffcf (patch) | |
tree | 342f8d5266e4c51a19bb761a550af77fef00c406 /pkgs/tools/misc/remote-exec | |
parent | 884a6324e20bfd2e5d7141f4ce5f39d65976f7b6 (diff) |
remote-exec: pin pydantic_1
Diffstat (limited to 'pkgs/tools/misc/remote-exec')
-rw-r--r-- | pkgs/tools/misc/remote-exec/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/remote-exec/default.nix b/pkgs/tools/misc/remote-exec/default.nix index afedab81cbd6..557bde26c465 100644 --- a/pkgs/tools/misc/remote-exec/default.nix +++ b/pkgs/tools/misc/remote-exec/default.nix @@ -3,7 +3,7 @@ , fetchFromGitHub , buildPythonApplication , click -, pydantic +, pydantic_1 , toml , watchdog , pytestCheckHook @@ -29,7 +29,7 @@ buildPythonApplication rec { propagatedBuildInputs = [ click - pydantic + pydantic_1 toml watchdog ]; |