evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / simplemma / default.nix
blob191fbb5df796e0aea2d3001461812a2115ddd37e
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   marisa-trie,
7   platformdirs,
8   pytest,
9   pytest-cov-stub,
10   pytestCheckHook,
13 buildPythonPackage rec {
14   pname = "simplemma";
15   version = "1.1.1";
16   pyproject = true;
18   src = fetchFromGitHub {
19     owner = "adbar";
20     repo = "simplemma";
21     rev = "refs/tags/v${version}";
22     hash = "sha256-X0mqFPdCo0/sTexv4bi4bND7LFHOJvlOPH6tB39ybZY=";
23   };
25   build-system = [
26     setuptools
27   ];
29   optional-dependencies = {
30     marisa-trie = [
31       marisa-trie
32       platformdirs
33     ];
34   };
36   nativeCheckInputs = [
37     pytest-cov-stub
38     pytestCheckHook
39   ];
41   pythonImportsCheck = [ "simplemma" ];
43   meta = {
44     description = "Simple multilingual lemmatizer for Python, especially useful for speed and efficiency";
45     homepage = "https://github.com/adbar/simplemma";
46     license = lib.licenses.mit;
47     maintainers = [ ];
48   };