nixpkgs/pkgs/development/python-modules/ftfy/default.nix

45 lines
1.1 KiB
Nix
Raw Normal View History

2017-05-15 01:26:02 +03:00
{ stdenv
, buildPythonPackage
, fetchPypi
, html5lib
, wcwidth
, nose
}:
2017-05-15 01:26:02 +03:00
buildPythonPackage rec {
pname = "ftfy";
version = "4.4.3";
# ftfy v5 only supports python3. Since at the moment the only
# packages that use ftfy are spacy and textacy which both support
# python 2 and 3, they have pinned ftfy to the v4 branch.
# I propose to stick to v4 until another package requires v5.
# At that point we can make a ftfy_v4 package.
2017-05-15 01:26:02 +03:00
src = fetchPypi {
inherit pname version;
sha256 = "152xdb56rhs1q4r0ck1n557sbphw7zq18r75a7kkd159ckdnc01w";
2017-05-15 01:26:02 +03:00
};
propagatedBuildInputs = [ html5lib wcwidth ];
2017-05-15 01:26:02 +03:00
2017-09-06 19:15:46 +03:00
checkInputs = [
2017-05-15 01:26:02 +03:00
nose
];
checkPhase = ''
2017-09-06 19:15:46 +03:00
nosetests -v tests
2017-05-15 01:26:02 +03:00
'';
2017-09-06 19:15:46 +03:00
# Several tests fail with
# FileNotFoundError: [Errno 2] No such file or directory: 'ftfy'
doCheck = false;
2017-05-15 01:26:02 +03:00
meta = with stdenv.lib; {
description = "Given Unicode text, make its representation consistent and possibly less broken.";
homepage = https://github.com/LuminosoInsight/python-ftfy/tree/master/tests;
license = licenses.mit;
maintainers = with maintainers; [ sdll aborsu ];
};
2017-05-15 01:26:02 +03:00
}