depot/third_party/nixpkgs/pkgs/development/python-modules/ftfy/default.nix
Default email 2ea8997135 Project import generated by Copybara.
GitOrigin-RevId: 5bc8b980b9178ef9a4bb622320cf34e59ea2ea10
2021-08-23 10:02:39 +02:00

38 lines
721 B
Nix

{ lib
, buildPythonPackage
, isPy3k
, fetchPypi
, wcwidth
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "ftfy";
version = "6.0.3";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "ba71121a9c8d7790d3e833c6c1021143f3e5c4118293ec3afb5d43ed9ca8e72b";
};
propagatedBuildInputs = [
wcwidth
];
checkInputs = [
pytestCheckHook
];
preCheck = ''
export PATH=$out/bin:$PATH
'';
meta = with 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 ];
};
}