pythonPackages.elasticsearch-curator: 5.5.4 -> 5.6.0

This commit is contained in:
Bas van Dijk 2018-11-30 00:12:42 +01:00
parent 1ce2cc47fc
commit 5d970e740e
2 changed files with 5 additions and 4 deletions

View File

@ -82,11 +82,12 @@ in {
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
systemd.services.elasticsearch-curator = { systemd.services.elasticsearch-curator = {
startAt = cfg.interval; startAt = cfg.interval;
serviceConfig = { serviceConfig = {
ExecStart = ''${pkgs.python36Packages.elasticsearch-curator}/bin/curator --config ${curatorConfig} ${curatorAction}''; ExecStart =
"${pkgs.python3Packages.elasticsearch-curator}/bin/curator" +
" --config ${curatorConfig} ${curatorAction}";
}; };
}; };
}; };

View File

@ -17,11 +17,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "elasticsearch-curator"; pname = "elasticsearch-curator";
version = "5.5.4"; version = "5.6.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "e75abeb7f7be939b1c64c071898760dc10ab5f08307c253fc074abf8a41a76f0"; sha256 = "0r4p229233ivprxnvp33hilkgczijmyvi33wivxhhj6q3kkywpyq";
}; };
# The test hangs so we disable it. # The test hangs so we disable it.