ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / mecab-python3 / default.nix
blob1b452850161b906b55f1bcbce343c43cfa9327c9
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , mecab
5 , swig
6 , setuptools-scm
7 }:
9 buildPythonPackage rec {
10   pname = "mecab-python3";
11   version = "1.0.5";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "sha256-5wPXjIimcau4FwNRZEhQAV2bv6sxUwo7QNEkgaZ3mhE=";
16   };
18   nativeBuildInputs = [
19     mecab # for mecab-config
20     swig
21     setuptools-scm
22   ];
24   buildInputs = [ mecab ];
26   doCheck = false;
28   meta = with lib; {
29     description = "A python wrapper for mecab: Morphological Analysis engine";
30     homepage =  "https://github.com/SamuraiT/mecab-python3";
31     license = with licenses; [ gpl2 lgpl21 bsd3 ]; # any of the three
32     maintainers = with maintainers; [ ixxie ];
33   };