python3Packages.pony: disable on python 3.11 or later

This commit is contained in:
Nick Cao 2023-02-03 16:17:24 +08:00
parent 89fae351e4
commit bff2a5a317
No known key found for this signature in database

View File

@ -3,6 +3,7 @@
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, pythonAtLeast
}:
buildPythonPackage rec {
@ -10,7 +11,7 @@ buildPythonPackage rec {
version = "0.7.16";
format = "setuptools";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.7" || pythonAtLeast "3.11";
src = fetchFromGitHub {
owner = "ponyorm";