mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
Merge pull request #212768 from fabaff/pypytools-fix
python311Packages.pypytools: disable failing test on Python 3.11
This commit is contained in:
commit
6bf4a2fd40
@ -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 New Issue
Block a user