python39Packages.isounidecode: init at 0.3
This commit is contained in:
parent
84bf8623f7
commit
137f19d1d4
2 changed files with 25 additions and 0 deletions
23
pkgs/development/python-modules/isounidecode/default.nix
Normal file
23
pkgs/development/python-modules/isounidecode/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue