2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2018-10-29 15:02:50 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2018-12-02 22:07:59 +01:00
|
|
|
, zope-deferredimport
|
|
|
|
, zope_deprecation
|
2018-10-29 15:02:50 +01:00
|
|
|
, zope_event
|
2018-12-02 22:07:59 +01:00
|
|
|
, zope-hookable
|
2018-10-29 15:02:50 +01:00
|
|
|
, zope_interface
|
2018-12-02 22:07:59 +01:00
|
|
|
, zope_configuration
|
|
|
|
, zope_i18nmessageid
|
2018-10-29 15:02:50 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zope.component";
|
2021-08-26 21:32:48 +02:00
|
|
|
version = "5.0.1";
|
2018-10-29 15:02:50 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-08-26 21:32:48 +02:00
|
|
|
sha256 = "32cbe426ba8fa7b62ce5b211f80f0718a0c749cc7ff09e3f4b43a57f7ccdf5e5";
|
2018-10-29 15:02:50 +01: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 15:02:50 +01: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-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/zopefoundation/zope.component";
|
2018-10-29 15:02:50 +01:00
|
|
|
description = "Zope Component Architecture";
|
|
|
|
license = licenses.zpl20;
|
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|