Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 30 lines 657 B view raw
1{ lib 2, buildPythonPackage 3, pythonOlder 4, fetchPypi 5, pytestCheckHook 6}: 7 8buildPythonPackage rec { 9 pname = "anyascii"; 10 version = "0.3.2"; 11 format = "setuptools"; 12 disabled = pythonOlder "3.3"; 13 14 src = fetchPypi { 15 inherit pname version; 16 hash = "sha256-nV0y74RP4iW4vHy6f5UFNPrk2iepvzpr6iyw6kbORzA="; 17 }; 18 19 nativeCheckInputs = [ 20 pytestCheckHook 21 ]; 22 23 meta = with lib; { 24 changelog = "https://github.com/anyascii/anyascii/blob/${version}/CHANGELOG.md"; 25 description = "Unicode to ASCII transliteration"; 26 homepage = "https://github.com/anyascii/anyascii"; 27 license = licenses.isc; 28 maintainers = teams.tts.members; 29 }; 30}