poetry2nix-python-overrides: fix build of opencontainers

`pytest-runner` was dropped upstream, the build of opencontainers is
fine even without it.
This commit is contained in:
Maximilian Bosch 2024-09-25 18:55:29 +02:00
parent 643fe9d34c
commit 97f96dc50f
No known key found for this signature in database

View file

@ -22,8 +22,11 @@ pkgs:
opencontainers = prev.opencontainers.overrideAttrs (oA: {
nativeBuildInputs = oA.nativeBuildInputs ++ [
final.setuptools
final.pytest-runner final.pytest
final.pytest
];
postPatch = ''
substituteInPlace setup.py --replace-fail '"pytest-runner"' '''
'';
});
psycopg-c = prev.psycopg-c.overrideAttrs (oA: {
nativeBuildInputs = oA.nativeBuildInputs ++ [