Unverified Commit c828e04e authored by Patsakula Nikita's avatar Patsakula Nikita
Browse files

python311Packages.slovnet: init at 0.6.0

parent 64c24354
Loading
Loading
Loading
Loading
+35 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, razdel
, navec
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "slovnet";
  version = "0.6.0";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-AtIle9ybnMHSQr007iyGHGSPcIPveJj+FGirzDge95k=";
  };

  propagatedBuildInputs = [ numpy navec razdel ];
  nativeCheckInputs = [ pytestCheckHook ];
  pytestFlagsArray = [ "tests/" ];
  disabledTestPaths = [
    # Tries to download model binary artifacts:
    "tests/test_api.py"
  ];
  pythonImportCheck = [ "slovnet" ];

  meta = with lib; {
    description = "Deep-learning based NLP modeling for Russian language";
    homepage = "https://github.com/natasha/slovnet";
    license = licenses.mit;
    maintainers = with maintainers; [ npatsakula ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -11898,6 +11898,8 @@ self: super: with self; {

  slob = callPackage ../development/python-modules/slob { };

  slovnet = callPackage ../development/python-modules/slovnet { };

  slowapi = callPackage ../development/python-modules/slowapi { };

  slugid = callPackage ../development/python-modules/slugid { };