python312Packages.aiounittest: migrate to pytest

This commit is contained in:
Martin Weinelt
2024-07-08 23:08:10 +02:00
parent 72a1b22d68
commit 6fccf03a30
@@ -2,10 +2,8 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonAtLeast,
setuptools,
pynose,
coverage,
pytestCheckHook,
wrapt,
}:
@@ -25,14 +23,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ wrapt ];
nativeCheckInputs = [
pynose
coverage
];
checkPhase = ''
nosetests -e test_specific_test
'';
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "aiounittest" ];