python3Packages.sure: disable test on python 3.11 or later
As `rednose`, the check input, does not support python 3.11
This commit is contained in:
parent
0b9f9e8621
commit
1f5ce9e0b0
1 changed files with 3 additions and 1 deletions
|
@ -5,6 +5,7 @@
|
|||
, six
|
||||
, mock
|
||||
, isPyPy
|
||||
, pythonOlder
|
||||
, fetchpatch
|
||||
}:
|
||||
|
||||
|
@ -26,8 +27,9 @@ buildPythonPackage rec {
|
|||
})
|
||||
];
|
||||
|
||||
buildInputs = [ rednose ];
|
||||
propagatedBuildInputs = [ six mock ];
|
||||
checkInputs = [ rednose ];
|
||||
doCheck = pythonOlder "3.11";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Utility belt for automated testing";
|
||||
|
|
Loading…
Reference in a new issue