2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
oslotest,
|
|
|
|
pbr,
|
|
|
|
setuptools,
|
|
|
|
testscenarios,
|
|
|
|
stestr,
|
2021-09-18 10:52:07 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "oslo-i18n";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "6.4.0";
|
2024-01-13 08:15:51 +00:00
|
|
|
pyproject = true;
|
2021-09-18 10:52:07 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
pname = "oslo.i18n";
|
|
|
|
inherit version;
|
2024-09-19 14:19:46 +00:00
|
|
|
hash = "sha256-ZuBMBB6f8X0H4T7H9IKV+8NhaRQ8csojUqPvzJjntgg=";
|
2021-09-18 10:52:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
# only a small portion of the listed packages are actually needed for running the tests
|
|
|
|
# so instead of removing them one by one remove everything
|
|
|
|
rm test-requirements.txt
|
|
|
|
'';
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
build-system = [
|
2024-01-13 08:15:51 +00:00
|
|
|
pbr
|
|
|
|
setuptools
|
|
|
|
];
|
2021-09-18 10:52:07 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2021-09-18 10:52:07 +00:00
|
|
|
oslotest
|
|
|
|
stestr
|
|
|
|
testscenarios
|
|
|
|
];
|
|
|
|
|
|
|
|
checkPhase = ''
|
2023-03-15 16:39:30 +00:00
|
|
|
runHook preCheck
|
|
|
|
|
|
|
|
stestr run -e <(echo "
|
|
|
|
# test counts warnings which no longer matches in python 3.11
|
|
|
|
oslo_i18n.tests.test_message.MessageTestCase.test_translate_message_bad_translation
|
|
|
|
")
|
|
|
|
|
|
|
|
runHook postCheck
|
2021-09-18 10:52:07 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "oslo_i18n" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Oslo i18n library";
|
|
|
|
homepage = "https://github.com/openstack/oslo.i18n";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = teams.openstack.members;
|
|
|
|
};
|
|
|
|
}
|