1{ stdenv, lib, buildPythonPackage, fetchPypi, pytz, pytestCheckHook, freezegun }:
2
3buildPythonPackage rec {
4 pname = "Babel";
5 version = "2.9.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "bc0c176f9f6a994582230df350aa6e05ba2ebe4b3ac317eab29d9be5d2768da0";
10 };
11
12 propagatedBuildInputs = [ pytz ];
13
14 checkInputs = [ pytestCheckHook freezegun ];
15
16 doCheck = !stdenv.isDarwin;
17
18 meta = with lib; {
19 homepage = "http://babel.edgewall.org";
20 description = "A collection of tools for internationalizing Python applications";
21 license = licenses.bsd3;
22 maintainers = with maintainers; [ ];
23 };
24}