Merge pull request #63864 from cransom/datadog-agent-integrations-fix

datadog-agent: fix extraIntegrations
This commit is contained in:
Graham Christensen 2019-08-12 12:15:48 -04:00 committed by GitHub
commit 5d807f80c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 6 deletions

@ -42,9 +42,9 @@ let
# Apply the configured extraIntegrations to the provided agent
# package. See the documentation of `dd-agent/integrations-core.nix`
# for detailed information on this.
datadogPkg = cfg.package.overrideAttrs(_: {
python = (pkgs.datadog-integrations-core cfg.extraIntegrations).python;
});
datadogPkg = cfg.package.override {
pythonPackages = pkgs.datadog-integrations-core cfg.extraIntegrations;
};
in {
options.services.datadog-agent = {
enable = mkOption {
@ -60,7 +60,7 @@ in {
defaultText = "pkgs.datadog-agent";
description = ''
Which DataDog v6 agent package to use. Note that the provided
package is expected to have an overridable `python`-attribute
package is expected to have an overridable `pythonPackages`-attribute
which configures the Python environment with the Datadog
checks.
'';

@ -3,6 +3,7 @@
let
# keep this in sync with github.com/DataDog/agent-payload dependency
payloadVersion = "4.7.1";
python = pythonPackages.python;
in buildGoPackage rec {
name = "datadog-agent-${version}";
@ -26,8 +27,6 @@ in buildGoPackage rec {
goDeps = ./datadog-agent-deps.nix;
goPackagePath = "github.com/${owner}/${repo}";
# Explicitly set this here to allow it to be overridden.
python = pythonPackages.python;
nativeBuildInputs = [ pkgconfig makeWrapper ];
buildInputs = [ systemd ];