Unverified Commit 2e7880b2 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python312Packages.ecs-logging: 2.1.0 -> 2.2.0
parents fd7c2324 30d5ef65
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -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; [
+2 −2
Original line number Diff line number Diff line
@@ -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 ];