2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2017-05-14 22:26:02 +00:00
|
|
|
, buildPythonPackage
|
2018-12-15 10:16:28 +00:00
|
|
|
, isPy3k
|
2017-05-14 22:26:02 +00:00
|
|
|
, fetchPypi
|
|
|
|
, wcwidth
|
2021-03-11 13:24:16 +00:00
|
|
|
, pytestCheckHook
|
2017-05-14 22:26:02 +00:00
|
|
|
}:
|
2018-03-13 23:01:04 +00:00
|
|
|
|
2017-05-14 22:26:02 +00:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "ftfy";
|
2022-03-02 21:41:59 +00:00
|
|
|
version = "6.1.1";
|
2020-07-31 06:50:43 +00:00
|
|
|
|
2018-12-15 10:16:28 +00:00
|
|
|
disabled = !isPy3k;
|
2017-05-14 22:26:02 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-03-02 21:41:59 +00:00
|
|
|
sha256 = "sha256-v8IBn4T82FFBkVIyCmN1YEoPFFnCgbWxmbLNDS5yf48=";
|
2017-05-14 22:26:02 +00:00
|
|
|
};
|
|
|
|
|
2019-01-28 19:55:43 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
wcwidth
|
|
|
|
];
|
2017-05-14 22:26:02 +00:00
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [
|
2021-03-11 13:24:16 +00:00
|
|
|
pytestCheckHook
|
2017-05-14 22:26:02 +00:00
|
|
|
];
|
|
|
|
|
2021-03-11 13:24:16 +00:00
|
|
|
preCheck = ''
|
|
|
|
export PATH=$out/bin:$PATH
|
2017-05-14 22:26:02 +00:00
|
|
|
'';
|
|
|
|
|
2022-03-08 22:00:02 +00:00
|
|
|
disabledTestPaths = [
|
|
|
|
# Calls poetry and fails to match output exactly
|
|
|
|
"tests/test_cli.py"
|
|
|
|
];
|
|
|
|
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-01-28 19:55:43 +00:00
|
|
|
description = "Given Unicode text, make its representation consistent and possibly less broken";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/LuminosoInsight/python-ftfy";
|
2017-05-14 22:26:02 +00:00
|
|
|
license = licenses.mit;
|
2021-09-18 09:22:27 +00:00
|
|
|
maintainers = with maintainers; [ aborsu ];
|
2018-03-13 23:01:04 +00:00
|
|
|
};
|
2017-05-14 22:26:02 +00:00
|
|
|
}
|