summary refs log blame commit diff
path: root/pkgs/development/python-modules/anyascii/default.nix
blob: b03b59d339edfd776b675a7668d3bc81e90de4b6 (plain) (tree)
1
2
3
4
5
6
7
8
9








                        
                    




                               
                                                                   












                                                      
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "anyascii";
  version = "0.3.0";
  format = "setuptools";
  disabled = pythonOlder "3.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-JPJ0Mftkxsk6MxJftm+MugB6UmK8H6q+r+2l9LtwtZM=";
  };

  checkInputs = [
    pytestCheckHook
  ];

  meta = with lib; {
    description = "Unicode to ASCII transliteration";
    homepage = "https://github.com/anyascii/anyascii";
    license = licenses.isc;
    maintainers = teams.tts.members;
  };
}