python312Packages.ddt: disable tests

Tests rely on aiounittest, which is not compatible with Python 3.12
right now.
This commit is contained in:
Martin Weinelt
2023-12-20 20:45:58 +01:00
parent 6bb53dd507
commit 10590daa39
@@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
# build-system
, setuptools
@@ -27,6 +28,9 @@ buildPythonPackage rec {
setuptools
];
# aiounittest is not compatible with Python 3.12.
doCheck = pythonOlder "3.12";
nativeCheckInputs = [
aiounittest
mock