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

python312Packages.ecs-logging: 2.1.0 -> 2.2.0

authored by Fabian Affolter and committed by GitHub 2e7880b2 fd7c2324

+7 -5
+5 -3
pkgs/by-name/el/elasticsearch-curator/package.nix
··· 9 9 10 10 python3.pkgs.buildPythonApplication rec { 11 11 pname = "elasticsearch-curator"; 12 - version = "8.0.15"; 13 - format = "pyproject"; 12 + version = "8.0.16"; 13 + pyproject = true; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "elastic"; 17 17 repo = "curator"; 18 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-pW928jT9oL76RJuJgH7nhCvgWPzXixzqBKVYsaJy9xw="; 19 + hash = "sha256-nSBsLzem+eZBM0ebhW1Omh+pYYPYdly/VraM89iJe3E="; 20 20 }; 21 + 22 + pythonRelaxDeps = [ "es-client" ]; 21 23 22 24 build-system = with python3.pkgs; [ hatchling ]; 23 25
+2 -2
pkgs/development/python-modules/ecs-logging/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "ecs-logging"; 11 - version = "2.1.0"; 11 + version = "2.2.0"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 17 17 owner = "elastic"; 18 18 repo = "ecs-logging-python"; 19 19 rev = "refs/tags/${version}"; 20 - hash = "sha256-Gf44bT3/gmHy+yaQ1+bhCFB33ym2G14tzNqTQyC3BJU="; 20 + hash = "sha256-djCEutZqcyRfRme+omiwl3ofBUBli71TnfVu59i7vlE="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ flit-core ];