A few fixes to various packages

This commit is contained in:
Nejc Zupan 2022-02-01 20:33:37 +00:00
parent 1e91b23606
commit ea15a00506
3 changed files with 17 additions and 1 deletions

View file

@ -147,4 +147,4 @@ poetry2nix.mkPoetryApplication {
}); });
} }
``` ```
This override will instruct underlying build logic to includ additional build dependency into inputs of `extralib`. This override will instruct underlying build logic to include additional build dependency into inputs of `extralib`.

View file

@ -258,6 +258,9 @@
"enturclient": [ "enturclient": [
"poetry-core" "poetry-core"
], ],
"enumatch": [
"poetry"
],
"fastapi": [ "fastapi": [
"flitBuildHook" "flitBuildHook"
], ],
@ -279,6 +282,12 @@
"fixtures": [ "fixtures": [
"pbr" "pbr"
], ],
"flake8-debugger": [
"poetry-core"
],
"flake8-print": [
"poetry-core"
],
"flipr-api": [ "flipr-api": [
"poetry-core" "poetry-core"
], ],
@ -649,6 +658,9 @@
"p1monitor": [ "p1monitor": [
"poetry-core" "poetry-core"
], ],
"paddle-client": [
"poetry"
],
"palace": [ "palace": [
"cython" "cython"
], ],
@ -800,6 +812,9 @@
"pypass": [ "pypass": [
"pbr" "pbr"
], ],
"pyppeteer": [
"poetry"
],
"pypika-tortoise": [ "pypika-tortoise": [
"poetry-core" "poetry-core"
], ],

View file

@ -442,6 +442,7 @@ lib.composeManyExtensions [
postPatch = '' postPatch = ''
substituteInPlace setup.py \ substituteInPlace setup.py \
--replace 'setup_requires="setupmeta"' 'setup_requires=[]' --replace 'setup_requires="setupmeta"' 'setup_requires=[]'
--replace 'versioning="devcommit"' 'version="${old.version}"'
''; '';
} }
); );