29 lines
645 B
Nix
29 lines
645 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "bangla";
|
|
version = "0.0.5";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-rX2/rUUf9g4otYMNX0LDPXSIDRbIE8xRl95NamHzRwQ=";
|
|
};
|
|
|
|
pythonImportsCheck = [ "bangla" ];
|
|
|
|
# https://github.com/arsho/bangla/issues/5
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
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 = licenses.mit;
|
|
teams = [ teams.tts ];
|
|
};
|
|
}
|