2021-01-25 00:26:54 -08:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
2017-09-14 22:33:53 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Pyphen";
|
2020-11-06 11:26:31 -08:00
|
|
|
version = "0.10.0";
|
2017-09-14 22:33:53 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-06 11:26:31 -08:00
|
|
|
sha256 = "719b21dfb4b04fbc11cc0f6112418535fe35474021120cccfffc43a25fe63128";
|
2017-09-14 22:33:53 -07:00
|
|
|
};
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2017-09-14 22:33:53 -07:00
|
|
|
description = "Pure Python module to hyphenate text";
|
|
|
|
homepage = "https://github.com/Kozea/Pyphen";
|
|
|
|
license = with licenses; [gpl2 lgpl21 mpl20];
|
|
|
|
maintainers = with maintainers; [ rvl ];
|
|
|
|
};
|
|
|
|
}
|