1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, pytz
5, zope_component
6}:
7
8buildPythonPackage rec {
9 pname = "zope.i18n";
10 version = "4.6.2";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "229de41f751dae36b1ef9fa284bc548ef40169234bf0d2199e41581e16304621";
15 };
16
17 propagatedBuildInputs = [ pytz zope_component ];
18
19 meta = with stdenv.lib; {
20 homepage = https://github.com/zopefoundation/zope.i18n;
21 description = "Zope Internationalization Support";
22 license = licenses.zpl20;
23 maintainers = with maintainers; [ goibhniu ];
24 broken = true;
25 };
26
27}