python39Packages.python-toolbox: unbreak

Changed files
+8 -3
pkgs
development
python-modules
python-toolbox
+8 -3
pkgs/development/python-modules/python-toolbox/default.nix
···
, docutils
, fetchFromGitHub
, isPy27
-
, nose
-
, pytest
}:
buildPythonPackage rec {
···
checkInputs = [
docutils
-
pytest
];
meta = with lib; {
···
, docutils
, fetchFromGitHub
, isPy27
+
, pytestCheckHook
}:
buildPythonPackage rec {
···
checkInputs = [
docutils
+
pytestCheckHook
+
];
+
+
disabledTestPaths = [
+
# file imports 'dummy_threading', which was deprecated since py37
+
# and removed in py39
+
"test_python_toolbox/test_cute_profile/test_cute_profile.py"
];
meta = with lib; {