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