Unverified Commit 8ceb1c29 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #257436 from paveloom/simplemma

python3Packages.simplemma: init at 0.9.1
parents 6468d851 516fac84
Loading
Loading
Loading
Loading
+36 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub

, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "simplemma";
  version = "0.9.1";

  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "adbar";
    repo = "simplemma";
    rev = "v${version}";
    hash = "sha256-2IvAJ+tRnlYISymYXznCGAoUTKkM/PoYwpZpuMSXRYQ=";
  };

  nativeCheckInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "simplemma"
  ];

  meta = with lib; {
    description = "Simple multilingual lemmatizer for Python, especially useful for speed and efficiency";
    homepage = "https://github.com/adbar/simplemma";
    license = licenses.mit;
    maintainers = with maintainers; [ paveloom ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -11957,6 +11957,8 @@ self: super: with self; {
  simplekv = callPackage ../development/python-modules/simplekv { };
  simplemma = callPackage ../development/python-modules/simplemma { };
  simplenote = callPackage ../development/python-modules/simplenote { };
  simplepush = callPackage ../development/python-modules/simplepush { };