Files
nixpkgs/pkgs/development/python-modules/mecab-python3/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

47 lines
882 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
mecab,
swig,
setuptools-scm,
pythonOlder,
}:
buildPythonPackage rec {
pname = "mecab-python3";
version = "1.0.12";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "mecab_python3";
inherit version;
hash = "sha256-mroeVu+A3ZcUfcv441CBR68Sn7Rs7A5DK4X5apvapLk=";
};
nativeBuildInputs = [
mecab # for mecab-config
swig
setuptools-scm
];
buildInputs = [ mecab ];
doCheck = false;
pythonImportsCheck = [ "MeCab" ];
meta = {
description = "Python wrapper for mecab: Morphological Analysis engine";
homepage = "https://github.com/SamuraiT/mecab-python3";
changelog = "https://github.com/SamuraiT/mecab-python3/releases/tag/v${version}";
license = with lib.licenses; [
gpl2
lgpl21
bsd3
]; # any of the three
};
}