From a5201ab2c3cd02e3edf47df2c2ed1867034ff187 Mon Sep 17 00:00:00 2001 From: Aliaksandr Date: Thu, 26 Feb 2026 19:38:48 +0200 Subject: [PATCH] apache-airflow: fix build --- pkgs/by-name/ap/apache-airflow/python-package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/ap/apache-airflow/python-package.nix b/pkgs/by-name/ap/apache-airflow/python-package.nix index d08ed53b8079..ac522c31857b 100644 --- a/pkgs/by-name/ap/apache-airflow/python-package.nix +++ b/pkgs/by-name/ap/apache-airflow/python-package.nix @@ -200,6 +200,7 @@ let sed -i -E 's/"apache-airflow-task-sdk[^"]+",//' pyproject.toml substituteInPlace pyproject.toml \ + --replace-fail "GitPython==3.1.45" "GitPython" \ --replace-fail "hatchling==1.27.0" "hatchling" \ --replace-fail "trove-classifiers==2025.9.11.17" "trove-classifiers" @@ -286,6 +287,7 @@ let # Temporary to fix CI only: # https://github.com/apache/airflow/commit/c474be9ff06cf16bf96f93de9a09e30ffc476bee "fastapi" + "universal-pathlib" ]; }; @@ -337,6 +339,7 @@ buildPythonPackage rec { postPatch = '' substituteInPlace pyproject.toml \ + --replace-fail "GitPython==3.1.45" "GitPython" \ --replace-fail "hatchling==1.27.0" "hatchling" \ --replace-fail "trove-classifiers==2025.9.11.17" "trove-classifiers" '';