2017-09-15 07:33:53 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Pyphen";
|
2018-08-25 07:49:09 +02:00
|
|
|
version = "0.9.5";
|
2017-09-15 07:33:53 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-08-25 07:49:09 +02:00
|
|
|
sha256 = "3b633a50873156d777e1f1075ba4d8e96a6ad0a3ca42aa3ea9a6259f93f18921";
|
2017-09-15 07:33:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Pure Python module to hyphenate text";
|
|
|
|
homepage = "https://github.com/Kozea/Pyphen";
|
|
|
|
license = with licenses; [gpl2 lgpl21 mpl20];
|
|
|
|
maintainers = with maintainers; [ rvl ];
|
|
|
|
};
|
|
|
|
}
|