12 buildPythonPackage rec {
15 format = "setuptools";
17 # https://github.com/jayvdb/nose3/issues/5
18 disabled = pythonAtLeast "3.12";
21 inherit pname version;
22 hash = "sha256-diquIsrbiYsAudT0u7n46H+ODd5sSaiM0MVU9OWSW3Y=";
25 propagatedBuildInputs = [ coverage ];
27 # PyPy hangs for unknwon reason
28 # Darwin and python 3.11 fail at various assertions and I didn't find an easy way to find skip those tests
29 doCheck = !isPyPy && !stdenv.isDarwin && !isPy311;
32 ${python.pythonOnBuildForHost.interpreter} selftest.py
36 description = "Fork of nose v1 not using lib2to3 for compatibility with Python 3";
37 homepage = "https://github.com/jayvdb/nose3";
38 license = licenses.lgpl3;
39 maintainers = with maintainers; [ SuperSandro2000 ];