Merge pull request #249728 from r-ryantm/auto-update/python310Packages.ecs-logging

python310Packages.ecs-logging: 2.0.2 -> 2.1.0
This commit is contained in:
Fabian Affolter 2023-08-17 23:39:35 +02:00 committed by GitHub
commit 95adce84aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 22 additions and 18 deletions

View File

@ -8,7 +8,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "ecs-logging"; pname = "ecs-logging";
version = "2.0.2"; version = "2.1.0";
format = "flit"; format = "flit";
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -17,7 +17,7 @@ buildPythonPackage rec {
owner = "elastic"; owner = "elastic";
repo = "ecs-logging-python"; repo = "ecs-logging-python";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-CfPpUpzNfPuCAiuNsJrJ1nVLiUCPvclfrK7tByytoQE="; hash = "sha256-Gf44bT3/gmHy+yaQ1+bhCFB33ym2G14tzNqTQyC3BJU=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@ -10,14 +10,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "elasticsearch8"; pname = "elasticsearch8";
version = "8.7.0"; version = "8.9.0";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-mRy48OYsm+0M1/D+abs83RiqN8wQr/Z6SZUY4TNg190="; hash = "sha256-9j71MX3ITwfwFfIVvQIbXHu4r/3qz9SNAz8XfeAyWTc=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@ -10,6 +10,7 @@
, pytest-asyncio , pytest-asyncio
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, pythonRelaxDepsHook
, pyyaml , pyyaml
, requests , requests
, six , six
@ -18,7 +19,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "es-client"; pname = "es-client";
version = "8.7.0"; version = "8.9.0";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -27,11 +28,14 @@ buildPythonPackage rec {
owner = "untergeek"; owner = "untergeek";
repo = "es_client"; repo = "es_client";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-DJIo0yFJGR9gw5UJnmgnBFZx0uXUEW3rWT49jhfnXkQ="; hash = "sha256-pzCjVkZ/NmHSe6X8dNH1YvjTu3njQaJe4CuguqrJNs8=";
}; };
pythonRelaxDeps = true;
nativeBuildInputs = [ nativeBuildInputs = [
hatchling hatchling
pythonRelaxDepsHook
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [

View File

@ -5,27 +5,27 @@
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "elasticsearch-curator"; pname = "elasticsearch-curator";
version = "8.0.4"; version = "8.0.8";
format = "pyproject"; format = "pyproject";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "elastic"; owner = "elastic";
repo = "curator"; repo = "curator";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-FPp2BpfYsmNwwevYQ6EH3N1q0TjyeEsBeDM9EUbLl+Q="; hash = "sha256-G8wKeEr7TuUWlqz9hJmnJW7yxn+4WPoStVC0AX5jdHI=";
}; };
pythonRelaxDeps = [ postPatch = ''
"click" substituteInPlace pyproject.toml \
"ecs-logging" --replace "elasticsearch8==" "elasticsearch8>=" \
"elasticsearch8" --replace "es_client==" "es_client>=" \
"es_client" --replace "ecs-logging==" "ecs-logging>=" \
"pyyaml" --replace "click==" "click>="\
]; --replace "pyyaml==" "pyyaml>="
'';
nativeBuildInputs = with python3.pkgs; [ nativeBuildInputs = with python3.pkgs; [
hatchling hatchling
pythonRelaxDepsHook
]; ];
propagatedBuildInputs = with python3.pkgs; [ propagatedBuildInputs = with python3.pkgs; [
@ -77,8 +77,9 @@ python3.pkgs.buildPythonApplication rec {
]; ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/elastic/curator";
description = "Curate, or manage, your Elasticsearch indices and snapshots"; description = "Curate, or manage, your Elasticsearch indices and snapshots";
homepage = "https://github.com/elastic/curator";
changelog = "https://github.com/elastic/curator/releases/tag/v${version}";
license = licenses.asl20; license = licenses.asl20;
longDescription = '' longDescription = ''
Elasticsearch Curator helps you curate, or manage, your Elasticsearch Elasticsearch Curator helps you curate, or manage, your Elasticsearch
@ -92,7 +93,6 @@ python3.pkgs.buildPythonApplication rec {
* Perform various actions on the items which remain in the actionable list. * Perform various actions on the items which remain in the actionable list.
''; '';
changelog = "https://github.com/elastic/curator/releases/tag/v${version}";
maintainers = with maintainers; [ basvandijk ]; maintainers = with maintainers; [ basvandijk ];
}; };
} }