elasticsearch-curator: 8.0.10 -> 8.0.12

https://github.com/elastic/curator/compare/v8.0.10...v8.0.12
This commit is contained in:
Anthony Roussel 2024-03-24 11:56:15 +01:00
parent ef35305c3b
commit 303ec90277
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E
1 changed files with 4 additions and 14 deletions

View File

@ -8,30 +8,21 @@
python3.pkgs.buildPythonApplication rec {
pname = "elasticsearch-curator";
version = "8.0.10";
version = "8.0.12";
format = "pyproject";
src = fetchFromGitHub {
owner = "elastic";
repo = "curator";
rev = "refs/tags/v${version}";
hash = "sha256-hGG7lyrVviZSKTUo+AOPIutn/mxtDo+ewFxCRdj/jts=";
hash = "sha256-CU/8l5607eKodcdpMKu0Wdlg+K6YnFX6uoDju12NDR0=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace "elasticsearch8==" "elasticsearch8>=" \
--replace "es_client==" "es_client>=" \
--replace "ecs-logging==" "ecs-logging>=" \
--replace "click==" "click>="\
--replace "pyyaml==" "pyyaml>="
'';
nativeBuildInputs = with python3.pkgs; [
build-system = with python3.pkgs; [
hatchling
];
propagatedBuildInputs = with python3.pkgs; [
dependencies = with python3.pkgs; [
certifi
click
ecs-logging
@ -43,7 +34,6 @@ python3.pkgs.buildPythonApplication rec {
];
nativeCheckInputs = with python3.pkgs; [
mock
requests
pytestCheckHook
];