Merge pull request #221555 from cmm/yt-dlp-secretstorage

yt-dlp: add/propagate secretstorage
This commit is contained in:
Maciej Krüger 2023-03-19 12:16:04 +01:00 committed by GitHub
commit 698c68aa2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,6 +9,7 @@
, pycryptodomex , pycryptodomex
, websockets , websockets
, mutagen , mutagen
, secretstorage
, atomicparsleySupport ? true , atomicparsleySupport ? true
, ffmpegSupport ? true , ffmpegSupport ? true
, rtmpSupport ? true , rtmpSupport ? true
@ -28,7 +29,14 @@ buildPythonPackage rec {
sha256 = "sha256-Jl1dqXp2wV19mkCIpnt4rNXc9vjP2CV8UvWB/5lv9RU="; sha256 = "sha256-Jl1dqXp2wV19mkCIpnt4rNXc9vjP2CV8UvWB/5lv9RU=";
}; };
propagatedBuildInputs = [ brotli certifi mutagen pycryptodomex websockets ]; propagatedBuildInputs = [
brotli
certifi
mutagen
pycryptodomex
secretstorage # "optional", as in not in requirements.txt, needed for `--cookies-from-browser`
websockets
];
# Ensure these utilities are available in $PATH: # Ensure these utilities are available in $PATH:
# - ffmpeg: post-processing & transcoding support # - ffmpeg: post-processing & transcoding support