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