mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / development / python-modules / slovnet / default.nix
blob182b0475766afaf0244f516839aae897394279d6
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   numpy,
6   razdel,
7   navec,
8   pytestCheckHook,
9 }:
11 buildPythonPackage rec {
12   pname = "slovnet";
13   version = "0.6.0";
14   format = "setuptools";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-AtIle9ybnMHSQr007iyGHGSPcIPveJj+FGirzDge95k=";
19   };
21   propagatedBuildInputs = [
22     numpy
23     navec
24     razdel
25   ];
26   nativeCheckInputs = [ pytestCheckHook ];
27   pytestFlagsArray = [ "tests/" ];
28   disabledTestPaths = [
29     # Tries to download model binary artifacts:
30     "tests/test_api.py"
31   ];
32   pythonImportsCheck = [ "slovnet" ];
34   meta = with lib; {
35     description = "Deep-learning based NLP modeling for Russian language";
36     homepage = "https://github.com/natasha/slovnet";
37     license = licenses.mit;
38     maintainers = with maintainers; [ npatsakula ];
39   };