depot/third_party/nixpkgs/pkgs/development/python-modules/oslo-i18n/default.nix
Default email 2c76a4cb41 Project import generated by Copybara.
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
2023-11-16 04:20:00 +00:00

53 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, oslotest
, pbr
, testscenarios
, stestr
}:
buildPythonPackage rec {
pname = "oslo-i18n";
version = "6.1.0";
src = fetchPypi {
pname = "oslo.i18n";
inherit version;
hash = "sha256-4rgp8gW/HrYgR1bMNAJ9EZSUti0nH+7oYL+BbKegfq0=";
};
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
'';
nativeBuildInputs = [ pbr ];
nativeCheckInputs = [
oslotest
stestr
testscenarios
];
checkPhase = ''
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
'';
pythonImportsCheck = [ "oslo_i18n" ];
meta = with lib; {
description = "Oslo i18n library";
homepage = "https://github.com/openstack/oslo.i18n";
license = licenses.asl20;
maintainers = teams.openstack.members;
};
}