octoprint: relax some tests in the py-overlay

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
This commit is contained in:
2025-02-09 10:12:06 +01:00
parent 080eb11eee
commit e752694649

View File

@@ -52,6 +52,12 @@ let
build-system = [ self.setuptools ];
doCheck = false; # DeprecationWarnings
});
pytest-httpbin = super.pytest-httpbin.overridePythonAttrs (oldAttrs: rec {
doCheck = false; # fails in current overlay
});
httpcore = super.httpcore.overridePythonAttrs (oldAttrs: rec {
doCheck = false; # fails in current overlay
});
netaddr = super.netaddr.overridePythonAttrs (oldAttrs: rec {
version = "0.9.0";
@@ -226,9 +232,9 @@ let
in
''
sed -r -i \
${
lib.concatStringsSep "\n" (map (e: ''-e 's@${e}[<>=]+.*@${e}",@g' \'') ignoreVersionConstraints)
}
${lib.concatStringsSep "\n" (
map (e: ''-e 's@${e}[<>=]+.*@${e}",@g' \'') ignoreVersionConstraints
)}
setup.py
'';