Files
nixpkgs/pkgs/development/python-modules/prometheus-client/default.nix
Martin Weinelt b25a3c7565 python3Packages.prometheus-client: 0.22.0 -> 0.22.1
https://github.com/prometheus/client_python/releases/tag/v0.22.1

This commit was automatically generated using update-python-libraries.
2025-08-09 19:02:22 +02:00

49 lines
1.1 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
setuptools,
twisted,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "prometheus-client";
version = "0.22.1";
pyproject = true;
disabled = pythonOlder "3.8";
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.flatten (lib.attrValues optional-dependencies);
pythonImportsCheck = [ "prometheus_client" ];
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
# fails in darwin sandbox: Operation not permitted
"test_instance_ip_grouping_key"
];
meta = with lib; {
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 = licenses.asl20;
maintainers = [ ];
};
}