python314Packages.oslo-metrics: 0.14.0 -> 0.16.0, fetch from github

Also for 0.14.0 the hashes where not updated by accident.

(cherry picked from commit 36f78d2a15)
This commit is contained in:
Sandro Jäckel 2026-06-06 22:05:56 +02:00 committed by github-actions[bot]
commit f577430c91

View file

@ -1,7 +1,7 @@
{
lib,
buildPythonPackage,
fetchFromGitea,
fetchFromGitHub,
# build-system
pbr,
@ -19,15 +19,14 @@
buildPythonPackage rec {
pname = "oslo-metrics";
version = "0.14.0";
version = "0.16.0";
pyproject = true;
src = fetchFromGitea {
domain = "opendev.org";
src = fetchFromGitHub {
owner = "openstack";
repo = "oslo.metrics";
tag = version;
hash = "sha256-PiMrfVWRV3GQPJ7PnXzhAdTncXcFDPZFd+sMHVr65UU=";
hash = "sha256-LV4NGHs0lBtktjzboOsPOnA56QqjnaKwtGGdy5WlW6Q=";
};
env.PBR_VERSION = version;
@ -58,7 +57,7 @@ buildPythonPackage rec {
meta = {
description = "OpenStack library for collecting metrics from Oslo libraries";
homepage = "https://opendev.org/openstack/oslo.metrics";
homepage = "https://github.com/openstack/oslo.metrics";
license = lib.licenses.asl20;
teams = [ lib.teams.openstack ];
};