mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
70 lines
1.5 KiB
Nix
70 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
python3,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "dmarc-metrics-exporter";
|
|
version = "1.1.0";
|
|
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jgosmann";
|
|
repo = "dmarc-metrics-exporter";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-xzIYlOZ1HeW+jbVDVlUPTIooFraQ0cJltsDoCzVMNsA=";
|
|
};
|
|
|
|
pythonRelaxDeps = true;
|
|
|
|
build-system = with python3.pkgs; [
|
|
poetry-core
|
|
];
|
|
|
|
dependencies =
|
|
with python3.pkgs;
|
|
[
|
|
bite-parser
|
|
dataclasses-serialization
|
|
prometheus-client
|
|
structlog
|
|
uvicorn
|
|
xsdata
|
|
]
|
|
++ uvicorn.optional-dependencies.standard;
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
aiohttp
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
requests
|
|
];
|
|
|
|
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
# flaky tests
|
|
"test_build_info"
|
|
"test_prometheus_exporter"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# require networking
|
|
"dmarc_metrics_exporter/tests/test_e2e.py"
|
|
"dmarc_metrics_exporter/tests/test_imap_client.py"
|
|
"dmarc_metrics_exporter/tests/test_imap_queue.py"
|
|
];
|
|
|
|
pythonImportsCheck = [ "dmarc_metrics_exporter" ];
|
|
|
|
meta = {
|
|
description = "Export Prometheus metrics from DMARC reports";
|
|
mainProgram = "dmarc-metrics-exporter";
|
|
homepage = "https://github.com/jgosmann/dmarc-metrics-exporter";
|
|
changelog = "https://github.com/jgosmann/dmarc-metrics-exporter/blob/v${version}/CHANGELOG.rst";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ ma27 ];
|
|
};
|
|
}
|