Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, fetchPypi 3, buildPythonPackage 4}: 5 6buildPythonPackage rec { 7 pname = "pymorphy3-dicts-uk"; 8 version = "2.4.1.1.1663094765"; 9 10 src = fetchPypi { 11 inherit pname version; 12 hash = "sha256-s5RaNBNuGTgGzeZXuicdiKYHYedRN8E9E4qNFCqNEqw="; 13 }; 14 15 # has no tests 16 doCheck = false; 17 18 pythonImportsCheck = [ "pymorphy3_dicts_uk" ]; 19 20 meta = with lib; { 21 description = "Ukrainian dictionaries for pymorphy3"; 22 homepage = "https://github.com/no-plagiarism/pymorphy3-dicts"; 23 license = licenses.mit; 24 maintainers = with maintainers; [ jboy ]; 25 }; 26}