Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "unidic-lite"; 8 version = "1.0.8"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "0idj4yp0sl27ylr2wzkybbh0wj7c843lp7cljw5d1m7xv5r4b7fv"; 14 }; 15 16 # no tests 17 doCheck = false; 18 19 pythonImportsCheck = [ 20 "unidic_lite" 21 ]; 22 23 meta = with lib; { 24 description = "A small version of UniDic"; 25 homepage = "https://github.com/polm/unidic-lite"; 26 license = licenses.mit; 27 maintainers = teams.tts.members; 28 }; 29}