1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "Pyphen";
5 version = "0.9.5";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "3b633a50873156d777e1f1075ba4d8e96a6ad0a3ca42aa3ea9a6259f93f18921";
10 };
11
12 meta = with stdenv.lib; {
13 description = "Pure Python module to hyphenate text";
14 homepage = "https://github.com/Kozea/Pyphen";
15 license = with licenses; [gpl2 lgpl21 mpl20];
16 maintainers = with maintainers; [ rvl ];
17 };
18}