nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python310Packages.aiohttp-openmetrics: init at 0.0.11

+35
+33
pkgs/development/python-modules/aiohttp-openmetrics/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , aiohttp 5 + , prometheus-client 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "aiohttp-openmetrics"; 10 + version = "0.0.11"; 11 + 12 + src = fetchPypi { 13 + inherit pname version; 14 + sha256 = "sha256-GIVUkjyn+iQSMZZ6dNmmimvbt+t+uxOYv2QEDk/dA+g="; 15 + }; 16 + 17 + propagatedBuildInputs = [ 18 + aiohttp 19 + prometheus-client 20 + ]; 21 + 22 + # no tests 23 + doCheck = false; 24 + 25 + pythonImportsCheck = [ "aiohttp_openmetrics" ]; 26 + 27 + meta = with lib; { 28 + description = "OpenMetrics provider for aiohttp"; 29 + homepage = "https://github.com/jelmer/aiohttp-openmetrics/"; 30 + license = licenses.asl20; 31 + maintainers = with maintainers; [ ]; 32 + }; 33 + }
+2
pkgs/top-level/python-packages.nix
··· 198 198 199 199 aiohttp-jinja2 = callPackage ../development/python-modules/aiohttp-jinja2 { }; 200 200 201 + aiohttp-openmetrics = callPackage ../development/python-modules/aiohttp-openmetrics { }; 202 + 201 203 aiohttp-remotes = callPackage ../development/python-modules/aiohttp-remotes { }; 202 204 203 205 aiohttp-retry = callPackage ../development/python-modules/aiohttp-retry { };