lol

python310Packages.readability-lxml: disable broken test on darwin (#250407)

* python310Packages.readability-lxml: disable broken test on darwin

This test is broken on darwin. The test is fixed in master for
readability-lxml, but the fix requires pulling in a few dependencies
which are not packaged in nixpkgs.

* Update pkgs/development/python-modules/readability-lxml/default.nix

Co-authored-by: OTABI Tomoya <tomoya.otabi@gmail.com>

---------

Co-authored-by: OTABI Tomoya <tomoya.otabi@gmail.com>

authored by

Keegan Carruthers-Smith
OTABI Tomoya
and committed by
GitHub
0bcaa8a4 6433bbe3

+5 -1
+5 -1
pkgs/development/python-modules/readability-lxml/default.nix
··· 31 31 timeout-decorator 32 32 ]; 33 33 34 + disabledTests = lib.optionals stdenv.isDarwin [ 35 + # Test is broken on darwin. Fix in master from https://github.com/buriy/python-readability/pull/178 36 + "test_many_repeated_spaces" 37 + ]; 38 + 34 39 meta = with lib; { 35 - broken = stdenv.isDarwin; 36 40 description = "Fast python port of arc90's readability tool"; 37 41 homepage = "https://github.com/buriy/python-readability"; 38 42 license = licenses.asl20;