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:
parent
643fe9d34c
commit
97f96dc50f
1 changed files with 4 additions and 1 deletions
|
|
@ -22,8 +22,11 @@ pkgs:
|
||||||
opencontainers = prev.opencontainers.overrideAttrs (oA: {
|
opencontainers = prev.opencontainers.overrideAttrs (oA: {
|
||||||
nativeBuildInputs = oA.nativeBuildInputs ++ [
|
nativeBuildInputs = oA.nativeBuildInputs ++ [
|
||||||
final.setuptools
|
final.setuptools
|
||||||
final.pytest-runner final.pytest
|
final.pytest
|
||||||
];
|
];
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace setup.py --replace-fail '"pytest-runner"' '''
|
||||||
|
'';
|
||||||
});
|
});
|
||||||
psycopg-c = prev.psycopg-c.overrideAttrs (oA: {
|
psycopg-c = prev.psycopg-c.overrideAttrs (oA: {
|
||||||
nativeBuildInputs = oA.nativeBuildInputs ++ [
|
nativeBuildInputs = oA.nativeBuildInputs ++ [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue