blob: 25555998ed2417c39f861c60d47eb9fd72f087e2 (
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
59
60
61
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
devtools,
fastapi,
httpx,
poetry-core,
prometheus-client,
requests,
starlette,
}:
buildPythonPackage rec {
pname = "prometheus-fastapi-instrumentator";
version = "7.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "trallnag";
repo = "prometheus-fastapi-instrumentator";
tag = "v${version}";
hash = "sha256-54h/kwIdzFzxdYglwcEBPkLYno1YH2iWklg35qY2b00=";
};
build-system = [
poetry-core
];
dependencies = [
prometheus-client
starlette
];
nativeCheckInputs = [
devtools
fastapi
httpx
pytestCheckHook
requests
];
# numerous test failures on Darwin
doCheck = stdenv.hostPlatform.isLinux;
pythonImportsCheck = [ "prometheus_fastapi_instrumentator" ];
meta = {
description = "Instrument FastAPI with Prometheus metrics";
homepage = "https://github.com/trallnag/prometheus-fastapi-instrumentator";
changelog = "https://github.com/trallnag/prometheus-fastapi-instrumentator/blob/${src.tag}/CHANGELOG.md";
license = with lib.licenses; [
isc
bsd3
];
maintainers = with lib.maintainers; [ bcdarwin ];
platforms = lib.platforms.unix;
};
}
|