depot/third_party/nixpkgs/pkgs/development/python-modules/ipadic/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

41 lines
772 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
mecab,
setuptools-scm,
cython,
}:
buildPythonPackage rec {
pname = "ipadic";
version = "1.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "polm";
repo = "ipadic-py";
rev = "refs/tags/v${version}";
hash = "sha256-ybC8G1AOIZWkS3uQSErXctIJKq9Y7xBjRbBrO8/yAj4=";
};
# no tests
doCheck = false;
nativeBuildInputs = [
cython
mecab
setuptools-scm
];
pythonImportsCheck = [ "ipadic" ];
meta = with lib; {
description = "Contemporary Written Japanese dictionary";
homepage = "https://github.com/polm/ipadic-py";
license = licenses.mit;
maintainers = with maintainers; [ laurent-f1z1 ];
};
}