depot/third_party/nixpkgs/pkgs/development/python-modules/babel/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

60 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
isPyPy,
pythonAtLeast,
pythonOlder,
# build-system
setuptools,
# tests
freezegun,
pytestCheckHook,
pytz,
tzdata,
}:
buildPythonPackage rec {
pname = "babel";
version = "2.14.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "Babel";
inherit version;
hash = "sha256-aRmGfbA2OYuiHrXHoPayirjLw656c6ROvjSudKTn02M=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = lib.optionals (pythonOlder "3.9") [ pytz ];
# including backports.zoneinfo for python<3.9 yields infinite recursion
doCheck = pythonAtLeast "3.9";
nativeCheckInputs = [
freezegun
pytestCheckHook
# https://github.com/python-babel/babel/issues/988#issuecomment-1521765563
pytz
] ++ lib.optionals isPyPy [ tzdata ];
disabledTests = [
# fails on days switching from and to daylight saving time in EST
# https://github.com/python-babel/babel/issues/988
"test_format_time"
];
meta = with lib; {
homepage = "https://babel.pocoo.org/";
changelog = "https://github.com/python-babel/babel/releases/tag/v${version}";
description = "Collection of internationalizing tools";
mainProgram = "pybabel";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}