2018-10-29 14:27:13 +00:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pytz
|
|
|
|
, zope_component
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zope.i18n";
|
2019-10-17 10:42:15 +01:00
|
|
|
version = "4.7.0";
|
2018-10-29 14:27:13 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-17 10:42:15 +01:00
|
|
|
sha256 = "9fcc1adb4e5f6188769ab36f6f40a59b567bb5eef91f714584e0dfd0891be5d0";
|
2018-10-29 14:27:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pytz zope_component ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/zopefoundation/zope.i18n";
|
2018-10-29 14:27:13 +00:00
|
|
|
description = "Zope Internationalization Support";
|
|
|
|
license = licenses.zpl20;
|
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
2019-10-07 16:20:23 +01:00
|
|
|
broken = true;
|
2018-10-29 14:27:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|