about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pymorphy3/dicts-uk.nix
blob: 036bf452b893cc572858a9f5799acc77e6b37037 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib
, fetchPypi
, buildPythonPackage
}:

buildPythonPackage rec {
  pname = "pymorphy3-dicts-uk";
  version = "2.4.1.1.1663094765";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-s5RaNBNuGTgGzeZXuicdiKYHYedRN8E9E4qNFCqNEqw=";
  };

  # has no tests
  doCheck = false;

  pythonImportsCheck = [ "pymorphy3_dicts_uk" ];

  meta = with lib; {
    description = "Ukrainian dictionaries for pymorphy3";
    homepage = "https://github.com/no-plagiarism/pymorphy3-dicts";
    license = licenses.mit;
    maintainers = with maintainers; [ jboy ];
  };
}