udocker: remove useless pytest-runner

This commit is contained in:
Sandro Jäckel 2024-09-15 15:03:02 +02:00
parent 0d683ad879
commit 20f7764221
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -17,6 +17,11 @@ python3Packages.buildPythonApplication rec {
hash = "sha256-P49fkLvdCm/Eco+nD3SGM04PRQatBzq9CHlayueQetk=";
};
postPatch = ''
substituteInPlace setup.py \
--replace-fail "'pytest-runner'," ""
'';
# crun patchelf proot runc fakechroot
# are download statistically linked during runtime
buildInputs = [
@ -28,7 +33,6 @@ python3Packages.buildPythonApplication rec {
];
nativeCheckInputs = with python3Packages; [
pytest-runner
pytestCheckHook
];