Merge pull request #214321 from NickCao/pony

python3Packages.pony: disable on python 3.11 or later
This commit is contained in:
Nick Cao
2023-02-03 17:30:17 +08:00
committed by GitHub
@@ -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";