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