fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
28 lines
655 B
Nix
28 lines
655 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "bangla";
|
|
version = "0.0.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-F8j9UBMhZgB31atqebdGu6cfnkk573isDZp1171xXag=";
|
|
};
|
|
|
|
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;
|
|
maintainers = teams.tts.members;
|
|
};
|
|
}
|