Merge pull request #335258 from fabaff/ecs-logging-bump

python312Packages.ecs-logging: 2.1.0 -> 2.2.0
This commit is contained in:
Fabian Affolter
2024-08-17 11:31:56 +02:00
committed by GitHub
2 changed files with 7 additions and 5 deletions
@@ -9,16 +9,18 @@
python3.pkgs.buildPythonApplication rec {
pname = "elasticsearch-curator";
version = "8.0.15";
format = "pyproject";
version = "8.0.16";
pyproject = true;
src = fetchFromGitHub {
owner = "elastic";
repo = "curator";
rev = "refs/tags/v${version}";
hash = "sha256-pW928jT9oL76RJuJgH7nhCvgWPzXixzqBKVYsaJy9xw=";
hash = "sha256-nSBsLzem+eZBM0ebhW1Omh+pYYPYdly/VraM89iJe3E=";
};
pythonRelaxDeps = [ "es-client" ];
build-system = with python3.pkgs; [ hatchling ];
dependencies = with python3.pkgs; [
@@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "ecs-logging";
version = "2.1.0";
version = "2.2.0";
format = "pyproject";
disabled = pythonOlder "3.8";
@@ -17,7 +17,7 @@ buildPythonPackage rec {
owner = "elastic";
repo = "ecs-logging-python";
rev = "refs/tags/${version}";
hash = "sha256-Gf44bT3/gmHy+yaQ1+bhCFB33ym2G14tzNqTQyC3BJU=";
hash = "sha256-djCEutZqcyRfRme+omiwl3ofBUBli71TnfVu59i7vlE=";
};
nativeBuildInputs = [ flit-core ];