little fix

This commit is contained in:
afoucaultc 2026-07-10 16:54:59 +02:00
parent f8f24ac865
commit 38075c8e1b
4 changed files with 17 additions and 8 deletions

View file

@ -36,4 +36,13 @@
#nixpkgs.config.permittedInsecurePackages = [
# "electron-39.8.10"
#];
nixpkgs.overlays = [
(final: prev: {
streamlink = prev.streamlink.overridePythonAttrs (old: {
doCheck = false;
# or, to skip just the one test:
# disabledTests = (old.disabledTests or []) ++ [ "test_read_timeout" ];
});
})
];
}