Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / navec / default.nix
blobe5712212eb698ff13cd0f5c403d7ae8073d9a948
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , numpy
5 , razdel
6 , gensim
7 , pytestCheckHook
8 }:
10 buildPythonPackage rec {
11   pname = "navec";
12   version = "0.10.0";
13   format = "setuptools";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-TyNHSxwnmvbGBfhOeHPofEfKWLDFOKP50w2QxgnJ/SE=";
18   };
20   propagatedBuildInputs = [ numpy razdel ];
21   nativeCheckInputs = [ pytestCheckHook gensim ];
22   # TODO: remove when gensim usage will be fixed in `navec`.
23   disabledTests = [ "test_gensim" ];
24   pythonImportsCheck = [ "navec" ];
26   meta = with lib; {
27     description = "Compact high quality word embeddings for Russian language";
28     mainProgram = "navec-train";
29     homepage = "https://github.com/natasha/navec";
30     license = licenses.mit;
31     maintainers = with maintainers; [ npatsakula ];
32   };