1{ 2 buildPythonPackage, 3 lib, 4 fetchPypi, 5}: 6buildPythonPackage rec { 7 pname = "greek-accentuation"; 8 version = "1.2.0"; 9 format = "setuptools"; 10 src = fetchPypi { 11 inherit pname version; 12 hash = "sha256-l2HZXdqlLubvy2bWhhZVYGMpF0DXVKTDFehkcGF5xdk="; 13 }; 14 meta = with lib; { 15 description = "Python 3 library for accenting (and analyzing the accentuation of) Ancient Greek words"; 16 homepage = "https://github.com/jtauber/greek-accentuation"; 17 license = licenses.mit; 18 maintainers = with maintainers; [ kmein ]; 19 }; 20}