Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 584 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, jamo 5, nltk 6}: 7 8buildPythonPackage rec { 9 pname = "g2pkk"; 10 version = "0.1.2"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-YarV1Btn1x3Sm4Vw/JDSyJy3ZJMXAQHZJJJklSG0R+Q="; 16 }; 17 18 propagatedBuildInputs = [ 19 jamo 20 nltk 21 ]; 22 23 pythonImportsCheck = [ 24 "g2pkk" 25 ]; 26 27 doCheck = false; 28 29 meta = with lib; { 30 description = "Cross-platform g2p for Korean"; 31 homepage = "https://github.com/harmlessman/g2pkk"; 32 license = licenses.asl20; 33 maintainers = teams.tts.members; 34 }; 35} 36