depot/third_party/nixpkgs/pkgs/development/python-modules/pykakasi/default.nix

67 lines
1.4 KiB
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
deprecated,
fetchFromGitHub,
importlib-metadata,
jaconv,
py-cpuinfo,
pytest-benchmark,
pytestCheckHook,
pythonOlder,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "pykakasi";
version = "2.2.1";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "miurahr";
repo = "pykakasi";
rev = "refs/tags/v${version}";
hash = "sha256-ivlenHPD00bxc0c9G368tfTEckOC3vqDB5kMQzHXbVM==";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail ', "klepto"' ""
'';
build-system = [ setuptools-scm ];
dependencies = [
jaconv
deprecated
setuptools
] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
nativeCheckInputs = [
py-cpuinfo
pytest-benchmark
pytestCheckHook
];
disabledTests = [
# We don't care about benchmarks
"test_benchmark"
"pytest_benchmark_update_machine_info"
"pytest_benchmark_update_json"
];
pythonImportsCheck = [ "pykakasi" ];
meta = with lib; {
description = "Python converter for Japanese Kana-kanji sentences into Kana-Roman";
mainProgram = "kakasi";
homepage = "https://github.com/miurahr/pykakasi";
changelog = "https://github.com/miurahr/pykakasi/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}