python3Packages.oslo-log: 7.1.0 -> 7.2.0

Diff: https://github.com/openstack/oslo.log/compare/refs/tags/7.1.0...refs/tags/7.2.0
This commit is contained in:
Anthony ROUSSEL 2025-07-23 22:10:51 +02:00
parent 58040074a3
commit 4de74c8f52

View File

@ -3,7 +3,6 @@
stdenv,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
# build-system
setuptools,
@ -26,24 +25,16 @@
buildPythonPackage rec {
pname = "oslo-log";
version = "7.1.0";
version = "7.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "openstack";
repo = "oslo.log";
tag = version;
hash = "sha256-ybWrNwP9L7iOzft10TgRFxA4mCRDVozVC2ZAopgITqo=";
hash = "sha256-d5U3zvymIoGYfXfHFp7+gQuDOLHy/q4c+NOlUoCmikU=";
};
patches = [
# remove removed alias from tests
(fetchpatch {
url = "https://github.com/openstack/oslo.log/commit/69a285a8c830712b4b8aafc8ecd4e2d7654e1ffe.patch";
hash = "sha256-e0kRSHJPHITP/XgPHhY5kGzCupE00oBnCJYiUCs3Yks=";
})
];
# Manually set version because prb wants to get it from the git upstream repository (and we are
# installing from tarball instead)
PBR_VERSION = version;