2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2018-10-29 10:02:50 -04:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2018-12-02 22:07:59 +01:00
|
|
|
, zope-deferredimport
|
|
|
|
, zope_deprecation
|
2018-10-29 10:02:50 -04:00
|
|
|
, zope_event
|
2018-12-02 22:07:59 +01:00
|
|
|
, zope-hookable
|
2018-10-29 10:02:50 -04:00
|
|
|
, zope_interface
|
2018-12-02 22:07:59 +01:00
|
|
|
, zope_configuration
|
|
|
|
, zope_i18nmessageid
|
2018-10-29 10:02:50 -04:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2023-07-28 09:55:45 +09:00
|
|
|
pname = "zope-component";
|
2023-02-27 02:15:01 +01:00
|
|
|
version = "5.1.0";
|
2018-10-29 10:02:50 -04:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-03-03 01:48:06 +01:00
|
|
|
hash = "sha256-pQj5/vG29ShkYtM0DNif+rXHiZ3KBAEzcjnLa6fGuwo=";
|
2018-10-29 10:02:50 -04:00
|
|
|
};
|
|
|
|
|
2018-12-02 22:07:59 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
zope-deferredimport zope_deprecation zope_event zope-hookable zope_interface
|
|
|
|
zope_configuration zope_i18nmessageid
|
|
|
|
];
|
2018-10-29 10:02:50 -04:00
|
|
|
|
|
|
|
# ignore tests because of a circular dependency on zope_security
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://github.com/zopefoundation/zope.component";
|
2018-10-29 10:02:50 -04:00
|
|
|
description = "Zope Component Architecture";
|
|
|
|
license = licenses.zpl20;
|
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|