Files
nixpkgs/pkgs/development/python-modules/bangla/default.nix
Fabian Affolter 8b54bad9b2 python3Packages.bangla: 0.0.5 -> 0.0.6
This commit was automatically generated using update-python-libraries.
2026-08-25 01:24:09 +02:00

34 lines
738 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "bangla";
version = "0.0.6";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-r/5AaVajaWNRwTRkY3O59+aWewrJ2Rnclnc29n3GCxs=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "bangla" ];
# https://github.com/arsho/bangla/issues/5
doCheck = false;
meta = {
description = "Bangla is a package for Bangla language users with various functionalities including Bangla date and Bangla numeric conversation";
homepage = "https://github.com/arsho/bangla";
license = lib.licenses.mit;
teams = [ lib.teams.tts ];
};
})