2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-04-11 17:56:28 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, python
|
|
|
|
, fetchPypi
|
|
|
|
, flask
|
|
|
|
, Babel
|
|
|
|
, jinja2
|
|
|
|
, pytz
|
|
|
|
, speaklater
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Flask-Babel";
|
2020-11-29 14:04:28 +00:00
|
|
|
version = "2.0.0";
|
2018-04-11 17:56:28 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-29 14:04:28 +00:00
|
|
|
sha256 = "f9faf45cdb2e1a32ea2ec14403587d4295108f35017a7821a2b1acb8cfd9257d";
|
2018-04-11 17:56:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
flask
|
|
|
|
Babel
|
|
|
|
jinja2
|
|
|
|
pytz
|
|
|
|
speaklater
|
|
|
|
];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
${python.interpreter} -m unittest discover -s tests
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-04-11 17:56:28 +01:00
|
|
|
description = "Adds i18n/l10n support to Flask applications";
|
|
|
|
longDescription = ''
|
|
|
|
Implements i18n and l10n support for Flask.
|
|
|
|
This is based on the Python babel module as well as pytz both of which are
|
|
|
|
installed automatically for you if you install this library.
|
|
|
|
'';
|
|
|
|
license = licenses.bsd2;
|
2020-11-17 19:41:33 +00:00
|
|
|
maintainers = teams.sage.members;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/python-babel/flask-babel";
|
2018-04-11 17:56:28 +01:00
|
|
|
};
|
|
|
|
}
|