python3.pkgs.bnnumerizer: init at 0.0.2

This commit is contained in:
Jörg Thalheim 2023-04-22 19:38:31 +02:00 committed by Martin Weinelt
parent d4730d0cd0
commit 7c7baa0b78
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "bnnumerizer";
version = "0.0.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-Qd9v0Le1GqTsR3a2ZDzt6+5f0R4zXX1W1KIMCFFeXw0=";
};
pythonImportsCheck = [ "bnnumerizer" ];
# https://github.com/mnansary/bnUnicodeNormalizer/issues/10
doCheck = false;
meta = with lib; {
description = "Bangla Number text to String Converter";
homepage = "https://github.com/banglakit/number-to-bengali-word";
license = licenses.mit;
maintainers = teams.tts.members;
};
}

View File

@ -1406,6 +1406,8 @@ self: super: with self; {
bme680 = callPackage ../development/python-modules/bme680 { };
bnnumerizer = callPackage ../development/python-modules/bnnumerizer { };
bnunicodenormalizer = callPackage ../development/python-modules/bnunicodenormalizer { };
boa-api = callPackage ../development/python-modules/boa-api { };