evcc: 0.131.8 -> 0.131.10 (#364658)
[NixPkgs.git] / pkgs / development / python-modules / navec / default.nix
blob8369edba216993439c294a1c3f952e2e2a507e57
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   numpy,
6   razdel,
7   gensim,
8   pytestCheckHook,
9 }:
11 buildPythonPackage rec {
12   pname = "navec";
13   version = "0.10.0";
14   format = "setuptools";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-TyNHSxwnmvbGBfhOeHPofEfKWLDFOKP50w2QxgnJ/SE=";
19   };
21   propagatedBuildInputs = [
22     numpy
23     razdel
24   ];
25   nativeCheckInputs = [
26     pytestCheckHook
27     gensim
28   ];
29   # TODO: remove when gensim usage will be fixed in `navec`.
30   disabledTests = [ "test_gensim" ];
31   pythonImportsCheck = [ "navec" ];
33   meta = with lib; {
34     description = "Compact high quality word embeddings for Russian language";
35     mainProgram = "navec-train";
36     homepage = "https://github.com/natasha/navec";
37     license = licenses.mit;
38     maintainers = with maintainers; [ npatsakula ];
39   };