mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
python3.pkgs.bnnumerizer: init at 0.0.2
This commit is contained in:
parent
d4730d0cd0
commit
7c7baa0b78
27
pkgs/development/python-modules/bnnumerizer/default.nix
Normal file
27
pkgs/development/python-modules/bnnumerizer/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user