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
|
2020-04-07 01:47:07 +01:00
|
|
|
, setuptools
|
2019-01-28 19:55:43 +00:00
|
|
|
, pytest
|
2017-05-14 23:26:02 +01:00
|
|
|
}:
|
2018-03-13 23:01:04 +00:00
|
|
|
|
2017-05-14 23:26:02 +01:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "ftfy";
|
2020-07-29 22:13:07 +01:00
|
|
|
version = "5.8";
|
2020-07-31 07:50:43 +01:00
|
|
|
|
2018-12-15 10:16:28 +00:00
|
|
|
disabled = !isPy3k;
|
2017-05-14 23:26:02 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-07-29 22:13:07 +01:00
|
|
|
sha256 = "081p5z20dirrf1i3nshylc31qd5mbxibjc7gzj8x4isbiizpdisi";
|
2017-05-14 23:26:02 +01:00
|
|
|
};
|
|
|
|
|
2019-01-28 19:55:43 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
html5lib
|
|
|
|
wcwidth
|
2020-04-07 01:47:07 +01:00
|
|
|
setuptools
|
2019-01-28 19:55:43 +00:00
|
|
|
];
|
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";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/LuminosoInsight/python-ftfy";
|
2017-05-14 23:26:02 +01:00
|
|
|
license = licenses.mit;
|
2018-03-13 23:01:04 +00:00
|
|
|
maintainers = with maintainers; [ sdll aborsu ];
|
|
|
|
};
|
2017-05-14 23:26:02 +01:00
|
|
|
}
|