mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
Merge pull request #615 from schlarpc/master
overrides: add copier, myst-parser, and jinja2-ansible-filters
This commit is contained in:
commit
96e3794e5d
2 changed files with 14 additions and 0 deletions
|
@ -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"
|
||||
],
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue