Files
nixpkgs/pkgs/development/python-modules/aioprometheus/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

62 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
orjson,
quantile-python,
aiohttp,
aiohttp-basicauth,
starlette,
quart,
pytestCheckHook,
httpx,
fastapi,
uvicorn,
pythonOlder,
}:
buildPythonPackage rec {
pname = "aioprometheus";
version = "unstable-2023-03-14";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "claws";
repo = "aioprometheus";
rev = "4786678b413d166c0b6e0041558d11bc1a7097b2";
hash = "sha256-2z68rQkMjYqkszg5Noj9owWUWQGOEp/91RGiWiyZVOY=";
};
propagatedBuildInputs = [
orjson
quantile-python
];
optional-dependencies = {
aiohttp = [ aiohttp ];
starlette = [ starlette ];
quart = [ quart ];
};
nativeCheckInputs = [
pytestCheckHook
aiohttp-basicauth
httpx
fastapi
uvicorn
]
++ lib.flatten (builtins.attrValues optional-dependencies);
pythonImportsCheck = [ "aioprometheus" ];
meta = with lib; {
description = "Prometheus Python client library for asyncio-based applications";
homepage = "https://github.com/claws/aioprometheus";
changelog = "https://github.com/claws/aioprometheus/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ mbalatsko ];
};
}