python312Packages.aiounittest: fix tests by moving to pynose

This commit is contained in:
Sebastien Iooss 2024-03-01 12:37:13 +01:00
parent 5304897c5e
commit 3635ded162

View File

@ -3,7 +3,7 @@
, fetchFromGitHub
, pythonAtLeast
, setuptools
, nose
, pynose
, coverage
, wrapt
}:
@ -13,9 +13,6 @@ buildPythonPackage rec {
version = "1.4.2";
pyproject = true;
# requires the imp module
disabled = pythonAtLeast "3.12";
src = fetchFromGitHub {
owner = "kwarunek";
repo = pname;
@ -32,12 +29,12 @@ buildPythonPackage rec {
];
nativeCheckInputs = [
nose
pynose
coverage
];
checkPhase = ''
nosetests
nosetests -e test_specific_test
'';
pythonImportsCheck = [ "aiounittest" ];