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:
Nick Cao 2023-01-19 15:22:42 +08:00
parent 0b9f9e8621
commit 1f5ce9e0b0
No known key found for this signature in database

View file

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