about summary refs log tree commit diff
path: root/pkgs/applications/blockchains
diff options
context:
space:
mode:
authorLouis Bettens <louis@bettens.info>2023-01-30 13:47:25 +0100
committerLouis Bettens <louis@bettens.info>2023-01-30 13:47:25 +0100
commita151fb2ae8f56405e546a7687ee6dfa01c8fbfc8 (patch)
tree62931b42336d9fea0df4b64a8444503293d2caee /pkgs/applications/blockchains
parent1c906ccc36dc88a45437a4249b9157f2ce3b4158 (diff)
chia-dev-tools: fix
Diffstat (limited to 'pkgs/applications/blockchains')
-rw-r--r--pkgs/applications/blockchains/chia-dev-tools/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/blockchains/chia-dev-tools/default.nix b/pkgs/applications/blockchains/chia-dev-tools/default.nix
index d65eb37f3985f..e7b92b268a64b 100644
--- a/pkgs/applications/blockchains/chia-dev-tools/default.nix
+++ b/pkgs/applications/blockchains/chia-dev-tools/default.nix
@@ -37,12 +37,13 @@ python3Packages.buildPythonApplication rec {
 
   propagatedBuildInputs = with python3Packages; [
     (toPythonModule chia)
+    pytest # required at runtime by the "test" command
+    pytest-asyncio
     pytimeparse
   ];
 
   nativeCheckInputs = with python3Packages; [
     pytestCheckHook
-    pytest-asyncio
   ];
 
   preCheck = ''