nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python39Packages.isounidecode: init at 0.3

+25
+23
pkgs/development/python-modules/isounidecode/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi }: 2 + 3 + buildPythonPackage rec { 4 + pname = "isounidecode"; 5 + version = "0.3"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "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; [ SuperSandro2000 ]; 22 + }; 23 + }
+2
pkgs/top-level/python-packages.nix
··· 3692 3692 3693 3693 isort = callPackage ../development/python-modules/isort { }; 3694 3694 3695 + isounidecode = callPackage ../development/python-modules/isounidecode { }; 3696 + 3695 3697 isoweek = callPackage ../development/python-modules/isoweek { }; 3696 3698 3697 3699 itanium_demangler = callPackage ../development/python-modules/itanium_demangler { };