depot/third_party/nixpkgs/pkgs/development/python-modules/flask-babelex/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

55 lines
1 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, flask
, babel
, speaklater
, jinja2
, pytestCheckHook
, pytz
}:
buildPythonPackage rec {
pname = "flask-babelex";
version = "0.9.4";
format = "setuptools";
src = fetchPypi {
inherit version;
pname = "Flask-BabelEx";
sha256 = "09yfr8hlwvpgvq8kp1y7qbnnl0q28hi0348bv199ssiqx779r99r";
};
propagatedBuildInputs = [
flask
babel
speaklater
jinja2
];
nativeCheckInputs = [
pytestCheckHook
pytz
];
pytestFlagsArray = [
"tests/tests.py"
];
disabledTests = [
# Disabled 3 tests failing due to string representations of dates:
# Like "12. April 2010 um 15:46:00 MESZ" != 12. "April 2010 15:46:00 MESZ"
"test_init_app"
"test_custom_locale_selector"
"test_basics"
"test_non_initialized"
"test_refreshing"
];
meta = with lib; {
description = "Adds i18n/l10n support to Flask applications";
homepage = "https://github.com/mrjoes/flask-babelex";
license = licenses.bsd3;
maintainers = [ ];
};
}