tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.ftfy: disable failing tests
Martin Weinelt
4 years ago
c9c62eec
01d4b19c
+6
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
ftfy
default.nix
+6
pkgs/development/python-modules/ftfy/default.nix
reviewed
···
29
29
export PATH=$out/bin:$PATH
30
30
'';
31
31
32
32
+
disabledTestPaths = [
33
33
+
# Calls poetry and fails to match output exactly
34
34
+
"tests/test_cli.py"
35
35
+
];
36
36
+
37
37
+
32
38
meta = with lib; {
33
39
description = "Given Unicode text, make its representation consistent and possibly less broken";
34
40
homepage = "https://github.com/LuminosoInsight/python-ftfy";