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