From ea15a00506d0c183064cbc73b687c6be1c0c36b0 Mon Sep 17 00:00:00 2001 From: Nejc Zupan Date: Tue, 1 Feb 2022 20:33:37 +0000 Subject: [PATCH] A few fixes to various packages --- docs/edgecases.md | 2 +- overrides/build-systems.json | 15 +++++++++++++++ overrides/default.nix | 1 + 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/docs/edgecases.md b/docs/edgecases.md index d76c25f..9ca7115 100644 --- a/docs/edgecases.md +++ b/docs/edgecases.md @@ -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`. diff --git a/overrides/build-systems.json b/overrides/build-systems.json index 336bae6..504a888 100644 --- a/overrides/build-systems.json +++ b/overrides/build-systems.json @@ -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" ], diff --git a/overrides/default.nix b/overrides/default.nix index 3b424f7..7caf58a 100644 --- a/overrides/default.nix +++ b/overrides/default.nix @@ -442,6 +442,7 @@ lib.composeManyExtensions [ postPatch = '' substituteInPlace setup.py \ --replace 'setup_requires="setupmeta"' 'setup_requires=[]' + --replace 'versioning="devcommit"' 'version="${old.version}"' ''; } );