diff --git a/pkgs/development/python-modules/wordcloud/default.nix b/pkgs/development/python-modules/wordcloud/default.nix index bf71a5a14cd3..1bca71009a99 100644 --- a/pkgs/development/python-modules/wordcloud/default.nix +++ b/pkgs/development/python-modules/wordcloud/default.nix @@ -24,6 +24,11 @@ buildPythonPackage rec { hash = "sha256-Tcle9otT1eBN/RzajwKZDUq8xX0Lhi2t74OvhUrvHZE="; }; + postPatch = '' + substituteInPlace setup.cfg \ + --replace " --cov --cov-report xml --tb=short" "" + ''; + nativeBuildInputs = [ cython ]; @@ -39,11 +44,6 @@ buildPythonPackage rec { pytestCheckHook ]; - postPatch = '' - substituteInPlace setup.cfg \ - --replace " --cov --cov-report xml --tb=short" "" - ''; - preCheck = '' cd test ''; @@ -55,11 +55,15 @@ buildPythonPackage rec { disabledTests = [ # Don't tests CLI "test_cli_as_executable" + # OSError: invalid ppem value + "test_recolor_too_small" + "test_coloring_black_works" ]; meta = with lib; { description = "Word cloud generator in Python"; homepage = "https://github.com/amueller/word_cloud"; + changelog = "https://github.com/amueller/word_cloud/releases/tag/${version}"; license = licenses.mit; maintainers = with maintainers; [ jm2dev ]; };