From b7d8fe42cec269946e16a96407c435041fee2c2c Mon Sep 17 00:00:00 2001 From: Chaz Schlarp Date: Sat, 7 May 2022 19:29:50 -0700 Subject: [PATCH 1/3] overrides.jinja2-ansible-filters: Fix missing VERSION file --- overrides/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/overrides/default.nix b/overrides/default.nix index 8fc431b..cd53865 100644 --- a/overrides/default.nix +++ b/overrides/default.nix @@ -735,6 +735,14 @@ lib.composeManyExtensions [ } ); + jinja2-ansible-filters = super.jinja2-ansible-filters.overridePythonAttrs ( + old: { + preBuild = (old.preBuild or "") + '' + echo "${old.version}" > VERSION + ''; + } + ); + jira = super.jira.overridePythonAttrs ( old: { inherit (pkgs.python3Packages.jira) patches; From 18cf31dcdb5e89a55cd53cd5245d48cc7546fc1c Mon Sep 17 00:00:00 2001 From: Chaz Schlarp Date: Sat, 7 May 2022 19:33:25 -0700 Subject: [PATCH 2/3] build-systems: add myst-parser --- overrides/build-systems.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/overrides/build-systems.json b/overrides/build-systems.json index 23de336..135d064 100644 --- a/overrides/build-systems.json +++ b/overrides/build-systems.json @@ -735,6 +735,9 @@ "mypy-boto3-builder": [ "poetry-core" ], + "myst-parser": [ + "flit-core" + ], "nats-python": [ "poetry-core" ], From eaea1d5e59ca8270cf52c40a03dbce49d3442253 Mon Sep 17 00:00:00 2001 From: Chaz Schlarp Date: Sat, 7 May 2022 19:35:26 -0700 Subject: [PATCH 3/3] build-systems: add copier --- overrides/build-systems.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/overrides/build-systems.json b/overrides/build-systems.json index 135d064..af38660 100644 --- a/overrides/build-systems.json +++ b/overrides/build-systems.json @@ -229,6 +229,9 @@ "flit-core", "flitBuildHook" ], + "copier": [ + "poetry-core" + ], "cpyparsing": [ "cython" ],