Merge pull request #257678 from fabaff/aiohttp-openmetrics-bump

python311Packages.aiohttp-openmetrics: 0.0.11 -> 0.0.12
This commit is contained in:
Fabian Affolter 2023-09-28 00:38:24 +02:00 committed by GitHub
commit 633b3ab1ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,15 +3,19 @@
, fetchPypi
, aiohttp
, prometheus-client
, pythonOlder
}:
buildPythonPackage rec {
pname = "aiohttp-openmetrics";
version = "0.0.11";
version = "0.0.12";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-GIVUkjyn+iQSMZZ6dNmmimvbt+t+uxOYv2QEDk/dA+g=";
hash = "sha256-/ZRngcMlroCVTvIl+30DR4SI8LsSnTovuzg3YduWgWA=";
};
propagatedBuildInputs = [
@ -22,11 +26,14 @@ buildPythonPackage rec {
# no tests
doCheck = false;
pythonImportsCheck = [ "aiohttp_openmetrics" ];
pythonImportsCheck = [
"aiohttp_openmetrics"
];
meta = with lib; {
description = "OpenMetrics provider for aiohttp";
homepage = "https://github.com/jelmer/aiohttp-openmetrics/";
changelog = "https://github.com/jelmer/aiohttp-openmetrics/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};