2017-12-21 21:09:41 +00:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2018-08-21 16:41:26 +01:00
|
|
|
, boto3
|
2017-12-21 21:09:41 +00:00
|
|
|
, click
|
|
|
|
, certifi
|
2018-08-25 15:34:56 +01:00
|
|
|
, requests-aws4auth
|
2017-12-21 21:09:41 +00:00
|
|
|
, voluptuous
|
|
|
|
, pyyaml
|
|
|
|
, elasticsearch
|
|
|
|
, nosexcover
|
|
|
|
, coverage
|
|
|
|
, nose
|
|
|
|
, mock
|
|
|
|
, funcsigs
|
|
|
|
} :
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "elasticsearch-curator";
|
2018-05-28 13:17:49 +01:00
|
|
|
version = "5.5.4";
|
2017-12-21 21:09:41 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-05-28 13:17:49 +01:00
|
|
|
sha256 = "e75abeb7f7be939b1c64c071898760dc10ab5f08307c253fc074abf8a41a76f0";
|
2017-12-21 21:09:41 +00:00
|
|
|
};
|
|
|
|
|
2018-08-26 00:20:15 +01:00
|
|
|
# The test hangs so we disable it.
|
2018-08-25 15:44:27 +01:00
|
|
|
doCheck = false;
|
2017-12-21 21:09:41 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
click
|
|
|
|
certifi
|
2018-08-25 15:34:56 +01:00
|
|
|
requests-aws4auth
|
2017-12-21 21:09:41 +00:00
|
|
|
voluptuous
|
|
|
|
pyyaml
|
|
|
|
elasticsearch
|
2018-08-21 16:41:26 +01:00
|
|
|
boto3
|
2017-12-21 21:09:41 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
nosexcover
|
|
|
|
coverage
|
|
|
|
nose
|
|
|
|
mock
|
|
|
|
funcsigs
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/elastic/curator;
|
|
|
|
description = "Curate, or manage, your Elasticsearch indices and snapshots";
|
|
|
|
license = licenses.asl20;
|
|
|
|
longDescription = ''
|
|
|
|
Elasticsearch Curator helps you curate, or manage, your Elasticsearch
|
|
|
|
indices and snapshots by:
|
|
|
|
|
|
|
|
* Obtaining the full list of indices (or snapshots) from the cluster, as the
|
|
|
|
actionable list
|
|
|
|
|
|
|
|
* Iterate through a list of user-defined filters to progressively remove
|
|
|
|
indices (or snapshots) from this actionable list as needed.
|
|
|
|
|
|
|
|
* Perform various actions on the items which remain in the actionable list.
|
|
|
|
'';
|
|
|
|
maintainers = with maintainers; [ basvandijk ];
|
|
|
|
};
|
|
|
|
}
|