dmarc-metricx-exporter: pin to python 3.12 (#419735)

This commit is contained in:
Martin Weinelt
2025-06-25 03:14:58 +02:00
committed by GitHub
@@ -1,10 +1,15 @@
{
lib,
stdenv,
python3,
python312,
fetchFromGitHub,
}:
let
# more-itertools unsupported on 3.13
python3 = python312;
in
python3.pkgs.buildPythonApplication rec {
pname = "dmarc-metrics-exporter";
version = "1.2.0";