10 buildPythonPackage rec {
15 disabled = pythonOlder "3.5";
17 src = fetchFromGitHub {
20 rev = "refs/tags/${pname}-${version}";
21 hash = "sha256-OoJSY+dNNISyVwKuRboMH7Je8nYFKxus2c4v3VsmyRE=";
24 nativeBuildInputs = [ setuptools ];
26 nativeCheckInputs = [ pytestCheckHook ];
28 pythonImportsCheck = [ "unidecode" ];
31 description = "ASCII transliterations of Unicode text";
32 mainProgram = "unidecode";
33 homepage = "https://github.com/avian2/unidecode";
34 changelog = "https://github.com/avian2/unidecode/blob/unidecode-${version}/ChangeLog";
35 license = licenses.gpl2Plus;
36 maintainers = with maintainers; [ domenkozar ];