mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
66 lines
1.3 KiB
Nix
66 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; [ ];
|
|
};
|
|
}
|