2020-01-30 03:34:19 +00:00
|
|
|
{ stdenv, lib, buildPythonPackage, fetchPypi, fetchpatch, pytz, pytest, freezegun, glibcLocales }:
|
2018-04-05 20:58:14 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Babel";
|
2019-10-24 07:47:22 +01:00
|
|
|
version = "2.7.0";
|
2018-04-05 20:58:14 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 07:47:22 +01:00
|
|
|
sha256 = "e86135ae101e31e2c8ec20a4e0c5220f4eed12487d5cf3f78be7e98d3a57fc28";
|
2018-04-05 20:58:14 +01:00
|
|
|
};
|
|
|
|
|
2020-01-30 03:34:19 +00:00
|
|
|
patches = [
|
|
|
|
# The following 2 patches fix the test suite failing on nix < 2.3 with
|
|
|
|
# Python < 3 because those nix versions do not run in a pseudoterminal,
|
|
|
|
# which makes Python 2 not set the default encoding to UTF-8, and the
|
|
|
|
# Babel code crashes when printing a warning in that case.
|
|
|
|
# See #75676 and https://github.com/python-babel/babel/pull/691.
|
|
|
|
# It is important to fix this because otherwise Babel is not buildable
|
|
|
|
# with older nix versions (e.g. on machines used as --builders).
|
|
|
|
# TODO: Remove at release > 2.8.0.
|
|
|
|
(fetchpatch {
|
|
|
|
name = "Babel-Introduce-invariant-that-invalid_pofile-takes-unicode-line.patch";
|
|
|
|
url = "https://github.com/python-babel/babel/commit/f4f6653e6aa053724d2c6dc0ee71dcb928013352.patch";
|
|
|
|
sha256 = "1kyknwn9blspcf9yxmgdiaxdii1dnkblyhcflqwhxyl1mss1dxv5";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
name = "Babel-Fix-unicode-printing-error-on-Python-2-without-TTY.patch";
|
|
|
|
url = "https://github.com/python-babel/babel/commit/da7f31143847659b6b74d802618b03438aceb350.patch";
|
|
|
|
sha256 = "09yny8614knr8ngrrddmqzkxk70am135rccv2ncc6dji4xbqbfln";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-04-05 20:58:14 +01:00
|
|
|
propagatedBuildInputs = [ pytz ];
|
|
|
|
|
2019-12-30 09:03:10 +00:00
|
|
|
checkInputs = [ pytest freezegun ];
|
2018-06-12 17:24:41 +01:00
|
|
|
|
2019-11-12 12:09:18 +00:00
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
|
2018-04-05 20:58:14 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://babel.edgewall.org";
|
2018-04-05 20:58:14 +01:00
|
|
|
description = "A collection of tools for internationalizing Python applications";
|
|
|
|
license = licenses.bsd3;
|
2019-07-03 10:27:39 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-04-05 20:58:14 +01:00
|
|
|
};
|
|
|
|
}
|