about summary refs log tree commit diff
path: root/pkgs/tools/misc/remote-exec
diff options
context:
space:
mode:
authornatsukium2023-11-25 19:11:42 +0900
committerMartin Weinelt2023-12-20 20:15:31 +0100
commit2a2b137e325b14d0d97763d953f388bb15ecffcf (patch)
tree342f8d5266e4c51a19bb761a550af77fef00c406 /pkgs/tools/misc/remote-exec
parent884a6324e20bfd2e5d7141f4ce5f39d65976f7b6 (diff)
remote-exec: pin pydantic_1
Diffstat (limited to 'pkgs/tools/misc/remote-exec')
-rw-r--r--pkgs/tools/misc/remote-exec/default.nix4
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
   ];