depot/third_party/nixpkgs/pkgs/development/python-modules/anyascii/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

27 lines
611 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "anyascii";
version = "0.3.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-nV0y74RP4iW4vHy6f5UFNPrk2iepvzpr6iyw6kbORzA=";
};
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
changelog = "https://github.com/anyascii/anyascii/blob/${version}/CHANGELOG.md";
description = "Unicode to ASCII transliteration";
homepage = "https://github.com/anyascii/anyascii";
license = licenses.isc;
maintainers = teams.tts.members;
};
}