python311.pkgs.collections-extended: disable

Not supported yet.
This commit is contained in:
Alyssa Ross 2023-02-13 10:58:09 +00:00
parent e9be28ebac
commit d990d1ea88

View File

@ -5,6 +5,7 @@
, poetry-core
, pytestCheckHook
, pythonOlder
, pythonAtLeast
}:
buildPythonPackage rec {
@ -12,7 +13,8 @@ buildPythonPackage rec {
version = "2.0.2";
format = "pyproject";
disabled = pythonOlder "3.6";
# https://github.com/mlenzen/collections-extended/issues/198
disabled = pythonOlder "3.6" || pythonAtLeast "3.11";
src = fetchFromGitHub {
owner = "mlenzen";