77aa1a7f5b
Changelog: https://github.com/LuminosoInsight/python-ftfy/blob/master/CHANGELOG.md#version-57-february-18-2020 The most important change in this version is the update of Unicode character categories data to Unicode 12.1. This fixes the Python 3.8 build.
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, isPy3k
|
|
, fetchPypi
|
|
, html5lib
|
|
, wcwidth
|
|
, pytest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ftfy";
|
|
|
|
version = "5.7";
|
|
# 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.
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1j143kfpnskksfzs0pnr37kwph6m7c71p8gdldv26x2b7arwiyb7";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
html5lib
|
|
wcwidth
|
|
];
|
|
|
|
checkInputs = [
|
|
pytest
|
|
];
|
|
|
|
# We suffix PATH like this because the tests want the ftfy executable
|
|
checkPhase = ''
|
|
PATH=$out/bin:$PATH pytest
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Given Unicode text, make its representation consistent and possibly less broken";
|
|
homepage = https://github.com/LuminosoInsight/python-ftfy;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ sdll aborsu ];
|
|
};
|
|
}
|