Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.11 23 lines 517 B view raw
1{ lib 2, fetchPypi 3, buildPythonPackage 4}: 5 6buildPythonPackage rec { 7 pname = "pymorphy2-dicts-ru"; 8 version = "2.4.417127.4579844"; 9 10 src = fetchPypi { 11 inherit pname version; 12 hash = "sha256-eMrQOtymBQIavTh6Oy61FchRuG6UaCoe8jVKLHT8wZY="; 13 }; 14 15 pythonImportsCheck = [ "pymorphy2_dicts_ru" ]; 16 17 meta = with lib; { 18 description = "Russian dictionaries for pymorphy2"; 19 homepage = "https://github.com/kmike/pymorphy2-dicts/"; 20 license = licenses.mit; 21 maintainers = with maintainers; [ ]; 22 }; 23}