2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
zope-configuration,
|
|
|
|
zope-deferredimport,
|
|
|
|
zope-deprecation,
|
|
|
|
zope-event,
|
|
|
|
zope-hookable,
|
|
|
|
zope-i18nmessageid,
|
|
|
|
zope-interface,
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2023-08-04 22:07:22 +00:00
|
|
|
pname = "zope-component";
|
|
|
|
version = "6.0";
|
|
|
|
format = "setuptools";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
2023-08-04 22:07:22 +00:00
|
|
|
pname = "zope.component";
|
|
|
|
inherit version;
|
|
|
|
hash = "sha256-mgoEcq0gG5S0/mdBzprCwwuLsixRYHe/A2kt7E37aQY=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2024-01-02 11:29:13 +00:00
|
|
|
zope-configuration
|
2023-08-04 22:07:22 +00:00
|
|
|
zope-deferredimport
|
2023-10-19 13:55:26 +00:00
|
|
|
zope-deprecation
|
2024-01-13 08:15:51 +00:00
|
|
|
zope-event
|
2023-08-04 22:07:22 +00:00
|
|
|
zope-hookable
|
2023-08-22 20:05:09 +00:00
|
|
|
zope-i18nmessageid
|
2024-01-13 08:15:51 +00:00
|
|
|
zope-interface
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2024-01-13 08:15:51 +00:00
|
|
|
# ignore tests because of a circular dependency on zope-security
|
2020-04-24 23:36:52 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
pythonImportsCheck = [ "zope.component" ];
|
2023-08-04 22:07:22 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/zopefoundation/zope.component";
|
|
|
|
description = "Zope Component Architecture";
|
2023-08-04 22:07:22 +00:00
|
|
|
changelog = "https://github.com/zopefoundation/zope.component/blob/${version}/CHANGES.rst";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.zpl20;
|
2024-07-27 06:49:29 +00:00
|
|
|
maintainers = [ ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|