lol

Merge pull request #205114 from r-ryantm/auto-update/python310Packages.mecab-python3

python310Packages.mecab-python3: 1.0.5 -> 1.0.6

authored by

Fabian Affolter and committed by
GitHub
bf76dcab a71f67b5

+14 -3
+14 -3
pkgs/development/python-modules/mecab-python3/default.nix
··· 4 4 , mecab 5 5 , swig 6 6 , setuptools-scm 7 + , pythonOlder 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "mecab-python3"; 11 - version = "1.0.5"; 12 + version = "1.0.6"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 12 16 13 17 src = fetchPypi { 14 18 inherit pname version; 15 - sha256 = "sha256-5wPXjIimcau4FwNRZEhQAV2bv6sxUwo7QNEkgaZ3mhE="; 19 + hash = "sha256-FvOKzkhAIL00RqEAVIKWeMHnuX8XQLWLAKMdWVz/Al4="; 16 20 }; 17 21 18 22 nativeBuildInputs = [ ··· 21 25 setuptools-scm 22 26 ]; 23 27 24 - buildInputs = [ mecab ]; 28 + buildInputs = [ 29 + mecab 30 + ]; 25 31 26 32 doCheck = false; 27 33 34 + pythonImportsCheck = [ 35 + "MeCab" 36 + ]; 37 + 28 38 meta = with lib; { 29 39 description = "A python wrapper for mecab: Morphological Analysis engine"; 30 40 homepage = "https://github.com/SamuraiT/mecab-python3"; 41 + changelog = "https://github.com/SamuraiT/mecab-python3/releases/tag/v${version}"; 31 42 license = with licenses; [ gpl2 lgpl21 bsd3 ]; # any of the three 32 43 maintainers = with maintainers; [ ixxie ]; 33 44 };