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

47 lines
1.1 KiB
Nix
Raw Normal View History

2017-05-14 23:26:02 +01:00
{ stdenv
, buildPythonPackage
2018-12-15 10:16:28 +00:00
, isPy3k
2017-05-14 23:26:02 +01:00
, fetchPypi
, html5lib
, wcwidth
2019-01-28 19:55:43 +00:00
, pytest
2017-05-14 23:26:02 +01:00
}:
2017-05-14 23:26:02 +01:00
buildPythonPackage rec {
pname = "ftfy";
version = "5.5.1";
# 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.
2018-12-15 10:16:28 +00:00
disabled = !isPy3k;
2017-05-14 23:26:02 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "1ci6xrj4g01a97nymxpv9nj820nlmgzc4ybaz9k46i6bnxzpax7s";
2017-05-14 23:26:02 +01:00
};
2019-01-28 19:55:43 +00:00
propagatedBuildInputs = [
html5lib
wcwidth
];
2017-05-14 23:26:02 +01:00
2017-09-06 17:15:46 +01:00
checkInputs = [
2019-01-28 19:55:43 +00:00
pytest
2017-05-14 23:26:02 +01:00
];
2019-01-28 19:55:43 +00:00
# We suffix PATH like this because the tests want the ftfy executable
2017-05-14 23:26:02 +01:00
checkPhase = ''
2019-01-28 19:55:43 +00:00
PATH=$out/bin:$PATH pytest
2017-05-14 23:26:02 +01:00
'';
meta = with stdenv.lib; {
2019-01-28 19:55:43 +00:00
description = "Given Unicode text, make its representation consistent and possibly less broken";
homepage = https://github.com/LuminosoInsight/python-ftfy;
2017-05-14 23:26:02 +01:00
license = licenses.mit;
maintainers = with maintainers; [ sdll aborsu ];
};
2017-05-14 23:26:02 +01:00
}