summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/aioprometheus/default.nix
blob: 8f15d643743fe83b3818331dbb17402bf3b00f01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  orjson,
  quantile-python,
  aiohttp,
  aiohttp-basicauth,
  starlette,
  quart,
  pytestCheckHook,
  httpx,
  fastapi,
  uvicorn,
}:

buildPythonPackage rec {
  pname = "aioprometheus";
  version = "unstable-2023-03-14";
  format = "setuptools";

  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.concatAttrValues optional-dependencies;

  pythonImportsCheck = [ "aioprometheus" ];

  meta = {
    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 = lib.licenses.mit;
    maintainers = [ ];
  };
}