summary refs log tree commit diff
path: root/pkgs/servers/monitoring/prometheus/dmarc-exporter/poetry-git-overlay.nix
blob: cb8d7170a1902af1acce729cce2f20f1a7a5639b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs }:
self: super: {

  dmarc-metrics-exporter = super.dmarc-metrics-exporter.overridePythonAttrs (
    _: {
      src = pkgs.fetchgit {
        url = "https://github.com/jgosmann/dmarc-metrics-exporter.git";
        rev = "3f1a0161d7ed51b9de48c056dcbc545b6375e872";
        sha256 = "18sndv32ig0xq7s42hvkdxbb9qxvycmnrawm3x22cp7zfidgfkh2";
      };
    }
  );

}