From cd227f34532c0c4dfe6bac453b70a4214cf4bf05 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 21 May 2026 14:50:43 +0000 Subject: [PATCH] python3Packages.apache-beam: 2.72.0 -> 2.73.0 Diff: https://github.com/apache/beam/compare/v2.72.0...v2.73.0 Changelog: https://github.com/apache/beam/blob/v2.73.0/CHANGES.md --- pkgs/development/python-modules/apache-beam/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/apache-beam/default.nix b/pkgs/development/python-modules/apache-beam/default.nix index 671ae205cea0..d76083747d1c 100644 --- a/pkgs/development/python-modules/apache-beam/default.nix +++ b/pkgs/development/python-modules/apache-beam/default.nix @@ -66,14 +66,15 @@ buildPythonPackage (finalAttrs: { pname = "apache-beam"; - version = "2.72.0"; + version = "2.73.0"; pyproject = true; + __structuredAttrs = true; src = fetchFromGitHub { owner = "apache"; repo = "beam"; tag = "v${finalAttrs.version}"; - hash = "sha256-HlpaKDX/w6g6q8nOB8G83q4/ffgymk/XyTpwYVpbd2U="; + hash = "sha256-0xdz4pxyiXYgIe3+Rb+prgVMjWHQnTSFn504mdMD3Xg="; }; sourceRoot = "${finalAttrs.src.name}/sdks/python"; @@ -87,6 +88,7 @@ buildPythonPackage (finalAttrs: { ''; pythonRelaxDeps = [ + "cryptography" "envoy-data-plane" "httplib2" "jsonpickle" @@ -243,6 +245,9 @@ buildPythonPackage (finalAttrs: { ]; disabledTests = [ + # ConnectionResetError: [Errno 104] Connection reset by peer + "test_process_exits_on_unsafe_hard_delete_with_manager" + # importlib.metadata.PackageNotFoundError: No package metadata was found for pip "test_populate_requirements_cache_uses_find_links"