Merge pull request #212768 from fabaff/pypytools-fix

python311Packages.pypytools: disable failing test on Python 3.11
This commit is contained in:
Fabian Affolter 2023-01-26 20:04:04 +01:00 committed by GitHub
commit 6bf4a2fd40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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";