python39Packages.isounidecode: init at 0.3

This commit is contained in:
Sandro Jäckel 2021-09-04 19:49:55 +02:00
parent 84bf8623f7
commit 137f19d1d4
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "isounidecode";
version = "0.3";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-TbCpYsY0GCbJpprKq8L5I6WxJNU6M1voku8pFzvDHFs=";
};
pythonImportsCheck = [ "isounidecode" ];
# no real tests included, fails to run
doCheck = false;
meta = with lib; {
description = "Python package for conversion and transliteration of unicode into ascii or iso-8859-1";
homepage = "https://github.com/redvasily/isounidecode";
license = licenses.bsd3;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}

View File

@ -3692,6 +3692,8 @@ in {
isort = callPackage ../development/python-modules/isort { };
isounidecode = callPackage ../development/python-modules/isounidecode { };
isoweek = callPackage ../development/python-modules/isoweek { };
itanium_demangler = callPackage ../development/python-modules/itanium_demangler { };