forked from rarias/jungle
28 lines
452 B
Nix
28 lines
452 B
Nix
{ python3Packages, lib }:
|
|
|
|
python3Packages.buildPythonApplication {
|
|
pname = "upc-qaire-exporter";
|
|
version = "1.0";
|
|
|
|
pyproject = true;
|
|
|
|
src = ./.;
|
|
|
|
doCheck = false;
|
|
strictDeps = true;
|
|
|
|
build-system = with python3Packages; [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = with python3Packages; [
|
|
prometheus-client
|
|
requests
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "UPC Qaire Prometheus Exporter";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|