prometheus-xmpp-alerts: fix evaluation

https://hydra.nixos.org/build/111462401

callPackages adds override functions to each attribute rather than just
the top-level drv resulting drv.metadata that includes a function.

    derivation 'prometheus-xmpp-alerts-0.4.2' has invalid meta attribute 'overrideDerivation'
This commit is contained in:
Daiderd Jordan 2020-02-03 08:24:31 +01:00
parent 2df6898bb5
commit 105ecf1e01
No known key found for this signature in database
GPG key ID: D02435D05B810C96

View file

@ -15680,7 +15680,7 @@ in
prometheus-wireguard-exporter = callPackage ../servers/monitoring/prometheus/wireguard-exporter.nix {
inherit (darwin.apple_sdk.frameworks) Security;
};
prometheus-xmpp-alerts = callPackages ../servers/monitoring/prometheus/xmpp-alerts.nix {
prometheus-xmpp-alerts = callPackage ../servers/monitoring/prometheus/xmpp-alerts.nix {
pythonPackages = python3Packages;
};