2018-10-29 15:02:50 +01:00
|
|
|
{ stdenv
|
|
|
|
, 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";
|
2020-07-31 10:56:50 +02:00
|
|
|
version = "4.6.2";
|
2018-10-29 15:02:50 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-07-31 10:56:50 +02:00
|
|
|
sha256 = "91628918218b3e6f6323de2a7b845e09ddc5cae131c034896c051b084bba3c92";
|
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;
|
|
|
|
|
|
|
|
meta = with stdenv.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 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|