1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 pytestCheckHook,
6}:
7
8buildPythonPackage rec {
9 pname = "anyascii";
10 version = "0.3.2";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-nV0y74RP4iW4vHy6f5UFNPrk2iepvzpr6iyw6kbORzA=";
16 };
17
18 nativeCheckInputs = [ pytestCheckHook ];
19
20 meta = with lib; {
21 changelog = "https://github.com/anyascii/anyascii/blob/${version}/CHANGELOG.md";
22 description = "Unicode to ASCII transliteration";
23 homepage = "https://github.com/anyascii/anyascii";
24 license = licenses.isc;
25 maintainers = teams.tts.members;
26 };
27}