about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel Ainsworth <skainsworth@gmail.com>2023-08-21 17:49:16 -0700
committerSamuel Ainsworth <skainsworth@gmail.com>2023-08-21 17:49:16 -0700
commitcb1bfe97d3d8dfe4c1ca60b28dba20870683e923 (patch)
tree54e2b321eb01aab2bf3f4b3417655edc790fe65c
parent79147f87e49dbc3418da249876d8c98bd35cd987 (diff)
python3Packages.minichain: add `doCheck = false;`
-rw-r--r--pkgs/development/python-modules/minichain/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/minichain/default.nix b/pkgs/development/python-modules/minichain/default.nix
index 259223caa1bf9..07c627a86c591 100644
--- a/pkgs/development/python-modules/minichain/default.nix
+++ b/pkgs/development/python-modules/minichain/default.nix
@@ -52,6 +52,9 @@ buildPythonPackage rec {
     openai
   ];
 
+  # As of 0.3.3, the PyPI distribution does not include any tests.
+  doCheck = false;
+
   pythonImportsCheck = [ "minichain" ];
 
   nativeCheckInputs = [ pytestCheckHook ];