python3.pkgs.bnunicodenormalizer: init at 0.1.6
This commit is contained in:
parent
013bd5a87d
commit
6abcef4a82
2 changed files with 29 additions and 0 deletions
|
@ -0,0 +1,27 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "bnunicodenormalizer";
|
||||
version = "0.1.6";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-qVC6+0SnAs25DFzKPHFUOoYPlrRvkGWFptjIVom8wJM=";
|
||||
};
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "bnunicodenormalizer" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Bangla Unicode Normalization Toolkit";
|
||||
homepage = "https://github.com/mnansary/bnUnicodeNormalizer";
|
||||
license = licenses.mit;
|
||||
maintainers = teams.tts.members;
|
||||
};
|
||||
}
|
|
@ -1404,6 +1404,8 @@ self: super: with self; {
|
|||
|
||||
bme680 = callPackage ../development/python-modules/bme680 { };
|
||||
|
||||
bnunicodenormalizer = callPackage ../development/python-modules/bnunicodenormalizer { };
|
||||
|
||||
boa-api = callPackage ../development/python-modules/boa-api { };
|
||||
|
||||
bokeh = callPackage ../development/python-modules/bokeh { };
|
||||
|
|
Loading…
Reference in a new issue