Merge pull request #246044 from natsukium/zope-i18nmessageid/update
python310Packages.zope-i18nmessageid: 5.1.1 -> 6.0.1; rename
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
, zope_deprecation
|
||||
, zope_event
|
||||
, zope-hookable
|
||||
, zope_i18nmessageid
|
||||
, zope-i18nmessageid
|
||||
, zope_interface
|
||||
}:
|
||||
|
||||
@@ -27,7 +27,7 @@ buildPythonPackage rec {
|
||||
zope_deprecation
|
||||
zope_event
|
||||
zope-hookable
|
||||
zope_i18nmessageid
|
||||
zope-i18nmessageid
|
||||
zope_interface
|
||||
];
|
||||
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, zope_testrunner
|
||||
, unittestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zope-i18nmessageid";
|
||||
version = "6.0.1";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "zope.i18nmessageid";
|
||||
inherit version;
|
||||
hash = "sha256-LVvOb7MfHOoO+iZEZJvIZ9KXIwPx272f/vzlsuueAXY=";
|
||||
};
|
||||
|
||||
nativeCheckInputs = [
|
||||
unittestCheckHook
|
||||
zope_testrunner
|
||||
];
|
||||
|
||||
unittestFlagsArray = [
|
||||
"src/zope/i18nmessageid"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"zope.i18nmessageid"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/zopefoundation/zope.i18nmessageid";
|
||||
description = "Message Identifiers for internationalization";
|
||||
changelog = "https://github.com/zopefoundation/zope.i18nmessageid/blob/${version}/CHANGES.rst";
|
||||
license = licenses.zpl20;
|
||||
maintainers = with maintainers; [ goibhniu ];
|
||||
};
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, zope_i18nmessageid
|
||||
, zope-i18nmessageid
|
||||
, zope_schema
|
||||
, zope_testrunner
|
||||
, manuel
|
||||
@@ -18,7 +18,7 @@ buildPythonPackage rec {
|
||||
|
||||
nativeCheckInputs = [ zope_testrunner manuel ];
|
||||
|
||||
propagatedBuildInputs = [ zope_i18nmessageid zope_schema ];
|
||||
propagatedBuildInputs = [ zope-i18nmessageid zope_schema ];
|
||||
|
||||
# Need to investigate how to run the tests with zope-testrunner
|
||||
doCheck = false;
|
||||
|
||||
@@ -1,29 +0,0 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, six
|
||||
, coverage
|
||||
, zope_testrunner
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zope.i18nmessageid";
|
||||
version = "5.1.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-R7djR7gOCytmxIbuZvP4bFdJOiB1uFqfuAJpD6cwvZI=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
nativeCheckInputs = [ coverage zope_testrunner ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/zopefoundation/zope.i18nmessageid";
|
||||
description = "Message Identifiers for internationalization";
|
||||
license = licenses.zpl20;
|
||||
maintainers = with maintainers; [ goibhniu ];
|
||||
};
|
||||
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, zope_i18nmessageid
|
||||
, zope-i18nmessageid
|
||||
, zope_interface
|
||||
}:
|
||||
|
||||
@@ -14,7 +14,7 @@ buildPythonPackage rec {
|
||||
hash = "sha256-bhv3QJdZtNpyAuL6/aZXWD1Acx8661VweWaItJPpkHk=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ zope_i18nmessageid zope_interface ];
|
||||
propagatedBuildInputs = [ zope-i18nmessageid zope_interface ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/zopefoundation/zope.size";
|
||||
|
||||
@@ -394,4 +394,5 @@ mapAliases ({
|
||||
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
|
||||
zope_i18nmessageid = zope-i18nmessageid; # added 2023-07-29
|
||||
})
|
||||
|
||||
@@ -14021,7 +14021,7 @@ self: super: with self; {
|
||||
|
||||
zope-hookable = callPackage ../development/python-modules/zope-hookable { };
|
||||
|
||||
zope_i18nmessageid = callPackage ../development/python-modules/zope_i18nmessageid { };
|
||||
zope-i18nmessageid = callPackage ../development/python-modules/zope-i18nmessageid { };
|
||||
|
||||
zope_interface = callPackage ../development/python-modules/zope_interface { };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user