Skip to content

Commit

Permalink
Merge pull request #245808 from natsukium/zope-component/update
Browse files Browse the repository at this point in the history
python310Packages.zope-component: 5.1.0 -> 6.0
  • Loading branch information
mweinelt authored Jul 28, 2023
2 parents eb6249c + 0da71c3 commit cf9d024
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 18 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/certbot/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
, pytz
, requests
, six
, zope_component
, zope-component
, zope_interface
, dialog
, gnureadline
Expand Down Expand Up @@ -50,7 +50,7 @@ buildPythonPackage rec {
pytz
requests
six
zope_component
zope-component
zope_interface
];

Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/pyramid/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
, buildPythonPackage
, fetchPypi
, webtest
, zope_component
, zope-component
, hupper
, pastedeploy
, plaster
Expand Down Expand Up @@ -43,7 +43,7 @@ buildPythonPackage rec {

nativeCheckInputs = [
webtest
zope_component
zope-component
];

pythonImportsCheck = [
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/testfixtures/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
, pythonOlder
, sybil
, twisted
, zope_component
, zope-component
}:

buildPythonPackage rec {
Expand All @@ -33,7 +33,7 @@ buildPythonPackage rec {
pytestCheckHook
sybil
twisted
zope_component
zope-component
];

disabledTestPaths = [
Expand Down
Original file line number Diff line number Diff line change
@@ -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";
pname = "zope-component";
version = "6.0";
format = "setuptools";

src = fetchPypi {
inherit pname version;
hash = "sha256-pQj5/vG29ShkYtM0DNif+rXHiZ3KBAEzcjnLa6fGuwo=";
pname = "zope.component";
inherit version;
hash = "sha256-mgoEcq0gG5S0/mdBzprCwwuLsixRYHe/A2kt7E37aQY=";
};

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 ];
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
, fetchPypi
, isPy3k
, zope_event
, zope_component
, zope-component
}:

buildPythonPackage rec {
Expand All @@ -15,7 +15,7 @@ buildPythonPackage rec {
hash = "sha256-9ahU6J/5fe6ke/vqN4u77yeJ0uDMkKHB2lfZChzmfLU=";
};

propagatedBuildInputs = [ zope_event zope_component ];
propagatedBuildInputs = [ zope_event zope-component ];

# namespace colides with local directory
doCheck = false;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/servers/mail/mailman/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ buildPythonPackage rec {
passlib
requests
sqlalchemy
zope_component
zope-component
zope_configuration
];

Expand Down
1 change: 1 addition & 0 deletions pkgs/top-level/python-aliases.nix
Original file line number Diff line number Diff line change
Expand Up @@ -382,4 +382,5 @@ mapAliases ({
zc-buildout221 = zc-buildout; # added 2021-07-21
zc_buildout_nix = throw "zc_buildout_nix was pinned to a version no longer compatible with other modules";
zope_broken = throw "zope_broken has been removed because it is obsolete and not needed in zodb>=3.10"; # added 2023-07-26
zope_component = zope-component; # added 2023-07-28
})
2 changes: 1 addition & 1 deletion pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13901,7 +13901,7 @@ self: super: with self; {

zope-cachedescriptors = callPackage ../development/python-modules/zope-cachedescriptors { };

zope_component = callPackage ../development/python-modules/zope_component { };
zope-component = callPackage ../development/python-modules/zope-component { };

zope_configuration = callPackage ../development/python-modules/zope_configuration { };

Expand Down

0 comments on commit cf9d024

Please sign in to comment.