diff options
author | sss <sss@dark-alexandr.net> | 2025-08-08 05:01:00 +0300 |
---|---|---|
committer | sss <sss@dark-alexandr.net> | 2025-08-08 08:51:30 +0300 |
commit | bd89d856c32da2d531948f34b973fb742d990736 (patch) | |
tree | 5fcba4e38c2624484f217a9158e581bdccfef394 | |
parent | cdc60b568d880121113d332c5be1083c643e410d (diff) |
-rw-r--r-- | yt-dlp.nix | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -24,6 +24,34 @@ self: super: { websockets requests urllib3 + (shiton3.pkgs.buildPythonPackage { + pname = "bgutil-ytdlp-pot-provider-plugin"; + version = "git"; + pyproject = true; + src = fetchGit { + url = "https://github.com/Brainicism/bgutil-ytdlp-pot-provider"; + ref = "master"; + }; + preBuild = '' + cd plugin + ''; + nativeBuildInputs = [ hatchling ]; + propagatedBuildInputs = [ + brotli + certifi + mutagen + pycryptodomex + websockets + requests + urllib3 + ]; + + meta = with lib; { + homepage = "https://github.com/Brainicism/bgutil-ytdlp-pot-provider"; + description = "A proof-of-origin token (POT) provider yt-dlp"; + license = licenses.gpl3; + }; + }) ]; makeWrapperArgs = let |