blob: f704ff1d4ce798db15bc3006e18c2bc8ee76b3e3 (
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
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
setuptools,
twisted,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "prometheus-client";
version = "0.22.1";
pyproject = true;
src = fetchFromGitHub {
owner = "prometheus";
repo = "client_python";
tag = "v${version}";
hash = "sha256-DEuIoVpRDJTd9qXBeHa5jrBscmGgosCKAluqCuUBzuU=";
};
build-system = [ setuptools ];
optional-dependencies.twisted = [ twisted ];
__darwinAllowLocalNetworking = true;
nativeCheckInputs = [ pytestCheckHook ] ++ lib.concatAttrValues optional-dependencies;
pythonImportsCheck = [ "prometheus_client" ];
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
# fails in darwin sandbox: Operation not permitted
"test_instance_ip_grouping_key"
];
meta = {
description = "Prometheus instrumentation library for Python applications";
homepage = "https://github.com/prometheus/client_python";
changelog = "https://github.com/prometheus/client_python/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|