1{ lib
2, buildPythonPackage
3, fetchPypi
4, zope-deferredimport
5, zope_deprecation
6, zope_event
7, zope-hookable
8, zope_interface
9, zope_configuration
10, zope_i18nmessageid
11}:
12
13buildPythonPackage rec {
14 pname = "zope.component";
15 version = "5.0.1";
16
17 src = fetchPypi {
18 inherit pname version;
19 sha256 = "32cbe426ba8fa7b62ce5b211f80f0718a0c749cc7ff09e3f4b43a57f7ccdf5e5";
20 };
21
22 propagatedBuildInputs = [
23 zope-deferredimport zope_deprecation zope_event zope-hookable zope_interface
24 zope_configuration zope_i18nmessageid
25 ];
26
27 # ignore tests because of a circular dependency on zope_security
28 doCheck = false;
29
30 meta = with lib; {
31 homepage = "https://github.com/zopefoundation/zope.component";
32 description = "Zope Component Architecture";
33 license = licenses.zpl20;
34 maintainers = with maintainers; [ goibhniu ];
35 };
36
37}