Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at flake-libs 19 lines 518 B view raw
1{ 2 buildPythonPackage, 3 lib, 4 fetchPypi, 5}: 6buildPythonPackage rec { 7 pname = "greek-accentuation"; 8 version = "1.2.0"; 9 src = fetchPypi { 10 inherit pname version; 11 hash = "sha256-l2HZXdqlLubvy2bWhhZVYGMpF0DXVKTDFehkcGF5xdk="; 12 }; 13 meta = with lib; { 14 description = "Python 3 library for accenting (and analyzing the accentuation of) Ancient Greek words"; 15 homepage = "https://github.com/jtauber/greek-accentuation"; 16 license = licenses.mit; 17 maintainers = with maintainers; [ kmein ]; 18 }; 19}