1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 pytestCheckHook,
6}:
7
8buildPythonPackage rec {
9 pname = "anyascii";
10 version = "0.3.3";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-yU6d2dR7PZSU7KMF/vlEfQC0vxoyr/hap0b6Psf7lcM=";
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 teams = [ teams.tts ];
26 };
27}