Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at flake-libs 27 lines 571 B view raw
1{ 2 lib, 3 fetchPypi, 4 buildPythonPackage, 5}: 6 7buildPythonPackage rec { 8 pname = "pymorphy3-dicts-ru"; 9 version = "2.4.417150.4580142"; 10 11 src = fetchPypi { 12 inherit pname version; 13 hash = "sha256-Oas3nUypBbr+1Q9a/Do95vlkNgV3b7yrxNMIjU7TgrA="; 14 }; 15 16 # has no tests 17 doCheck = false; 18 19 pythonImportsCheck = [ "pymorphy3_dicts_ru" ]; 20 21 meta = with lib; { 22 description = "Russian dictionaries for pymorphy3"; 23 homepage = "https://github.com/no-plagiarism/pymorphy3-dicts"; 24 license = licenses.mit; 25 maintainers = with maintainers; [ jboy ]; 26 }; 27}