1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "isounidecode"; 5 version = "0.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 hash = "sha256-TbCpYsY0GCbJpprKq8L5I6WxJNU6M1voku8pFzvDHFs="; 10 }; 11 12 pythonImportsCheck = [ "isounidecode" ]; 13 14 # no real tests included, fails to run 15 doCheck = false; 16 17 meta = with lib; { 18 description = "Python package for conversion and transliteration of unicode into ascii or iso-8859-1"; 19 homepage = "https://github.com/redvasily/isounidecode"; 20 license = licenses.bsd3; 21 maintainers = with maintainers; [ ]; 22 }; 23}