mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
python3Packages.zope_i18n: remove due to prolonged breakage
This commit is contained in:
parent
bd0b0d653c
commit
e3c26f8c0d
|
@ -1,27 +0,0 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytz
|
||||
, zope_component
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zope.i18n";
|
||||
version = "4.7.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "9fcc1adb4e5f6188769ab36f6f40a59b567bb5eef91f714584e0dfd0891be5d0";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pytz zope_component ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/zopefoundation/zope.i18n";
|
||||
description = "Zope Internationalization Support";
|
||||
license = licenses.zpl20;
|
||||
maintainers = with maintainers; [ goibhniu ];
|
||||
broken = true;
|
||||
};
|
||||
|
||||
}
|
|
@ -7657,8 +7657,6 @@ in {
|
|||
|
||||
zope-hookable = callPackage ../development/python-modules/zope-hookable { };
|
||||
|
||||
zope_i18n = callPackage ../development/python-modules/zope_i18n { };
|
||||
|
||||
zope_i18nmessageid = callPackage ../development/python-modules/zope_i18nmessageid { };
|
||||
|
||||
zope_interface = callPackage ../development/python-modules/zope_interface { };
|
||||
|
|
Loading…
Reference in a new issue