24 buildPythonPackage rec {
25 pname = "flask-babel";
29 src = fetchFromGitHub {
30 owner = "python-babel";
32 rev = "refs/tags/v${version}";
33 hash = "sha256-BAT+oupy4MCSjeZ4hFtSKMkGU9xZtc7Phnz1mIsb2Kc=";
47 propagatedBuildInputs = [
54 pythonImportsCheck = [ "flask_babel" ];
62 changelog = "https://github.com/python-babel/flask-babel/releases/tag/v${version}";
63 description = "Adds i18n/l10n support to Flask applications";
65 Implements i18n and l10n support for Flask.
66 This is based on the Python babel module as well as pytz both of which are
67 installed automatically for you if you install this library.
69 license = licenses.bsd2;
70 maintainers = teams.sage.members ++ (with maintainers; [ matejc ]);
71 homepage = "https://github.com/python-babel/flask-babel";