about summary refs log tree commit diff
path: root/pkgs/applications/blockchains
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2023-02-01 01:31:48 +0100
committerGitHub <noreply@github.com>2023-02-01 01:31:48 +0100
commit27ce3ac3288f84814128a3bad70e919ccec76dd0 (patch)
tree15e2bc929cc077d5fdef074087f16c75b63eb3dc /pkgs/applications/blockchains
parent62f788dedbe488fa8b79681897c9970a9dd9bcc6 (diff)
parenta151fb2ae8f56405e546a7687ee6dfa01c8fbfc8 (diff)
Merge pull request #213579 from lourkeur/chia-dev-tools
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 = ''