mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
Merge pull request #257678 from fabaff/aiohttp-openmetrics-bump
python311Packages.aiohttp-openmetrics: 0.0.11 -> 0.0.12
This commit is contained in:
commit
633b3ab1ed
@ -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; [ ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user