python310Packages.aiohttp-openmetrics: init at 0.0.11
This commit is contained in:
parent
23493afbe6
commit
64dfa55904
2 changed files with 35 additions and 0 deletions
|
@ -0,0 +1,33 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, aiohttp
|
||||
, prometheus-client
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aiohttp-openmetrics";
|
||||
version = "0.0.11";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-GIVUkjyn+iQSMZZ6dNmmimvbt+t+uxOYv2QEDk/dA+g=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
prometheus-client
|
||||
];
|
||||
|
||||
# no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "aiohttp_openmetrics" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "OpenMetrics provider for aiohttp";
|
||||
homepage = "https://github.com/jelmer/aiohttp-openmetrics/";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
}
|
|
@ -198,6 +198,8 @@ self: super: with self; {
|
|||
|
||||
aiohttp-jinja2 = callPackage ../development/python-modules/aiohttp-jinja2 { };
|
||||
|
||||
aiohttp-openmetrics = callPackage ../development/python-modules/aiohttp-openmetrics { };
|
||||
|
||||
aiohttp-remotes = callPackage ../development/python-modules/aiohttp-remotes { };
|
||||
|
||||
aiohttp-retry = callPackage ../development/python-modules/aiohttp-retry { };
|
||||
|
|
Loading…
Reference in a new issue