about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel Ainsworth <skainsworth@gmail.com>2023-08-22 15:28:09 -0700
committerSamuel Ainsworth <skainsworth@gmail.com>2023-08-22 15:28:09 -0700
commit9d13a1dc98690f55df5a78ed671b75f7f56ee532 (patch)
tree80cd2fff4e05eecff43f800e42cdc63b3fd48af6
parentcb1bfe97d3d8dfe4c1ca60b28dba20870683e923 (diff)
python3Packages.minichain: add `disabled` samuela/minichain
-rw-r--r--pkgs/development/python-modules/minichain/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/minichain/default.nix b/pkgs/development/python-modules/minichain/default.nix
index 07c627a86c591..1e69fbb1f25b7 100644
--- a/pkgs/development/python-modules/minichain/default.nix
+++ b/pkgs/development/python-modules/minichain/default.nix
@@ -7,6 +7,7 @@
 , manifest-ml
 , openai
 , pytestCheckHook
+, pythonAtLeast
 , pythonRelaxDepsHook
 }:
 
@@ -15,6 +16,9 @@ buildPythonPackage rec {
   version = "0.3.3";
   format = "setuptools";
 
+  # See https://github.com/NixOS/nixpkgs/pull/248195#issuecomment-1687398702.
+  disabled = pythonAtLeast "3.11";
+
   # See https://github.com/srush/MiniChain/issues/23 and https://github.com/NixOS/nixpkgs/issues/248185 as to why we
   # don't fetchFromGitHub.
   src = fetchPypi {