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

View file

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