python3Packages.tebreak: mark as broken

+9 -4
+9 -4
pkgs/by-name/te/tebreak/package.nix
··· 50 50 51 51 pythonImportsCheck = [ "tebreak" ]; 52 52 53 - meta = with lib; { 53 + meta = { 54 54 description = "Find and characterise transposable element insertions"; 55 55 mainProgram = "tebreak"; 56 56 homepage = "https://github.com/adamewing/tebreak"; 57 - license = licenses.mit; 58 - maintainers = with maintainers; [ jbedo ]; 59 - platforms = platforms.x86_64; 57 + license = lib.licenses.mit; 58 + maintainers = with lib.maintainers; [ jbedo ]; 59 + platforms = lib.platforms.x86_64; 60 + # Several tests are failing: 61 + # - AttributeError: module 'skbio.alignment' has no attribute 'local_pairwise_align_ssw'. 62 + # Did you mean: 'local_pairwise_align'? 63 + # - AssertionError: 6 != 0 64 + broken = true; 60 65 }; 61 66 }