Merge pull request #309326 from mjoerg/streamlink-fix-build

streamlink: add missing dependency

authored by Aleksana and committed by GitHub 7be445e5 5e141ace

+4 -3
+4 -3
pkgs/applications/video/streamlink/default.nix
··· 42 43 propagatedBuildInputs = with python3Packages; [ 44 certifi 45 isodate 46 lxml 47 pycountry ··· 55 websocket-client 56 ]; 57 58 - meta = with lib; { 59 changelog = "https://github.com/streamlink/streamlink/raw/${version}/CHANGELOG.md"; 60 description = "CLI for extracting streams from various websites to video player of your choosing"; 61 homepage = "https://streamlink.github.io/"; ··· 66 67 Streamlink is a fork of the livestreamer project. 68 ''; 69 - license = licenses.bsd2; 70 mainProgram = "streamlink"; 71 - maintainers = with maintainers; [ dezgeg zraexy DeeUnderscore ]; 72 }; 73 }
··· 42 43 propagatedBuildInputs = with python3Packages; [ 44 certifi 45 + exceptiongroup 46 isodate 47 lxml 48 pycountry ··· 56 websocket-client 57 ]; 58 59 + meta = { 60 changelog = "https://github.com/streamlink/streamlink/raw/${version}/CHANGELOG.md"; 61 description = "CLI for extracting streams from various websites to video player of your choosing"; 62 homepage = "https://streamlink.github.io/"; ··· 67 68 Streamlink is a fork of the livestreamer project. 69 ''; 70 + license = lib.licenses.bsd2; 71 mainProgram = "streamlink"; 72 + maintainers = with lib.maintainers; [ dezgeg zraexy DeeUnderscore ]; 73 }; 74 }