python311Packages.pypytools: disable failing test on Python 3.11

This commit is contained in:
Fabian Affolter 2023-01-26 13:17:28 +01:00
parent 838857d11a
commit d5e510b8cc

View file

@ -6,6 +6,7 @@
, numpy
, py
, pytestCheckHook
, pythonAtLeast
, pythonOlder
}:
@ -45,6 +46,11 @@ buildPythonPackage rec {
"pypytools"
];
disabledTests = lib.optionals (pythonAtLeast "3.11") [
# https://github.com/antocuni/pypytools/issues/4
"test_clonefunc"
];
meta = with lib; {
description = "Collection of tools to use PyPy-specific features";
homepage = "https://github.com/antocuni/pypytools";