python310Packages.zope-component: refactor

This commit is contained in:
natsukium 2023-07-28 10:01:47 +09:00
parent 39ea250bb6
commit 6295ab5b29
No known key found for this signature in database
GPG key ID: 9EA45A31DB994C53

View file

@ -1,35 +1,47 @@
{ lib
, buildPythonPackage
, fetchPypi
, zope_configuration
, zope-deferredimport
, zope_deprecation
, zope_event
, zope-hookable
, zope_interface
, zope_configuration
, zope_i18nmessageid
, zope_interface
}:
buildPythonPackage rec {
pname = "zope-component";
version = "5.1.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
pname = "zope.component";
inherit version;
hash = "sha256-pQj5/vG29ShkYtM0DNif+rXHiZ3KBAEzcjnLa6fGuwo=";
};
propagatedBuildInputs = [
zope-deferredimport zope_deprecation zope_event zope-hookable zope_interface
zope_configuration zope_i18nmessageid
zope_configuration
zope-deferredimport
zope_deprecation
zope_event
zope-hookable
zope_i18nmessageid
zope_interface
];
# ignore tests because of a circular dependency on zope_security
doCheck = false;
pythonImportsCheck = [
"zope.component"
];
meta = with lib; {
homepage = "https://github.com/zopefoundation/zope.component";
description = "Zope Component Architecture";
changelog = "https://github.com/zopefoundation/zope.component/blob/${version}/CHANGES.rst";
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};