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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
716 B
Nix
Raw Normal View History

{ lib
2017-05-14 23:26:02 +01:00
, buildPythonPackage
2018-12-15 10:16:28 +00:00
, isPy3k
2017-05-14 23:26:02 +01:00
, fetchPypi
, wcwidth
, pytestCheckHook
2017-05-14 23:26:02 +01:00
}:
2017-05-14 23:26:02 +01:00
buildPythonPackage rec {
pname = "ftfy";
2021-08-18 14:28:26 +01:00
version = "6.0.3";
2018-12-15 10:16:28 +00:00
disabled = !isPy3k;
2017-05-14 23:26:02 +01:00
src = fetchPypi {
inherit pname version;
2021-08-18 14:28:26 +01:00
sha256 = "ba71121a9c8d7790d3e833c6c1021143f3e5c4118293ec3afb5d43ed9ca8e72b";
2017-05-14 23:26:02 +01:00
};
2019-01-28 19:55:43 +00:00
propagatedBuildInputs = [
wcwidth
];
2017-05-14 23:26:02 +01:00
2017-09-06 17:15:46 +01:00
checkInputs = [
pytestCheckHook
2017-05-14 23:26:02 +01:00
];
preCheck = ''
export PATH=$out/bin:$PATH
2017-05-14 23:26:02 +01:00
'';
meta = with 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; [ aborsu ];
};
2017-05-14 23:26:02 +01:00
}