nixpkgs/pkgs/development/python-modules/bangla/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
650 B
Nix
Raw Normal View History

2023-04-22 17:32:24 +00:00
{ 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;
};
}