tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.tebreak: mark as broken
Gaetan Lepage
4 months ago
53a3825e
fe3fd1e6
+9
-4
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
te
tebreak
package.nix
+9
-4
pkgs/by-name/te/tebreak/package.nix
···
50
50
51
51
pythonImportsCheck = [ "tebreak" ];
52
52
53
53
-
meta = with lib; {
53
53
+
meta = {
54
54
description = "Find and characterise transposable element insertions";
55
55
mainProgram = "tebreak";
56
56
homepage = "https://github.com/adamewing/tebreak";
57
57
-
license = licenses.mit;
58
58
-
maintainers = with maintainers; [ jbedo ];
59
59
-
platforms = platforms.x86_64;
57
57
+
license = lib.licenses.mit;
58
58
+
maintainers = with lib.maintainers; [ jbedo ];
59
59
+
platforms = lib.platforms.x86_64;
60
60
+
# Several tests are failing:
61
61
+
# - AttributeError: module 'skbio.alignment' has no attribute 'local_pairwise_align_ssw'.
62
62
+
# Did you mean: 'local_pairwise_align'?
63
63
+
# - AssertionError: 6 != 0
64
64
+
broken = true;
60
65
};
61
66
}