diff --git a/overrides/build-systems.json b/overrides/build-systems.json index 23de336..af38660 100644 --- a/overrides/build-systems.json +++ b/overrides/build-systems.json @@ -229,6 +229,9 @@ "flit-core", "flitBuildHook" ], + "copier": [ + "poetry-core" + ], "cpyparsing": [ "cython" ], @@ -735,6 +738,9 @@ "mypy-boto3-builder": [ "poetry-core" ], + "myst-parser": [ + "flit-core" + ], "nats-python": [ "poetry-core" ], 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;