2021-02-05 17:12:51 +00:00
|
|
|
{ lib
|
2020-04-24 23:36:52 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2023-08-04 22:07:22 +00:00
|
|
|
, zope_configuration
|
2020-04-24 23:36:52 +00:00
|
|
|
, zope-deferredimport
|
2023-10-19 13:55:26 +00:00
|
|
|
, zope-deprecation
|
2020-04-24 23:36:52 +00:00
|
|
|
, zope_event
|
|
|
|
, zope-hookable
|
2023-08-22 20:05:09 +00:00
|
|
|
, zope-i18nmessageid
|
2023-08-04 22:07:22 +00:00
|
|
|
, 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 = [
|
2023-08-04 22:07:22 +00:00
|
|
|
zope_configuration
|
|
|
|
zope-deferredimport
|
2023-10-19 13:55:26 +00:00
|
|
|
zope-deprecation
|
2023-08-04 22:07:22 +00:00
|
|
|
zope_event
|
|
|
|
zope-hookable
|
2023-08-22 20:05:09 +00:00
|
|
|
zope-i18nmessageid
|
2023-08-04 22:07:22 +00:00
|
|
|
zope_interface
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# ignore tests because of a circular dependency on zope_security
|
|
|
|
doCheck = false;
|
|
|
|
|
2023-08-04 22:07:22 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"zope.component"
|
|
|
|
];
|
|
|
|
|
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;
|
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|