python311Packages.pypytools: disable failing test on Python 3.11
This commit is contained in:
parent
838857d11a
commit
d5e510b8cc
1 changed files with 6 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue