about summary refs log tree commit diff
path: root/pkgs/tools/misc/yt-dlp
diff options
context:
space:
mode:
authorKid <44045911+kidonng@users.noreply.github.com>2021-09-18 09:18:59 +0800
committerGitHub <noreply@github.com>2021-09-18 09:18:59 +0800
commit560ce8d15c760b16b52606a678bc861d3a8908bc (patch)
tree3672c955ce2f194cf4e1f776e9159b2a581ced3d /pkgs/tools/misc/yt-dlp
parent8727b94cca6ac27d153d012dd23ca259507b1d73 (diff)
yt-dlp: remove obsolete `postPatch`
Diffstat (limited to 'pkgs/tools/misc/yt-dlp')
-rw-r--r--pkgs/tools/misc/yt-dlp/default.nix6
1 files changed, 0 insertions, 6 deletions
diff --git a/pkgs/tools/misc/yt-dlp/default.nix b/pkgs/tools/misc/yt-dlp/default.nix
index 9cb2d1dea0da2..e2c90ef053083 100644
--- a/pkgs/tools/misc/yt-dlp/default.nix
+++ b/pkgs/tools/misc/yt-dlp/default.nix
@@ -27,12 +27,6 @@ buildPythonPackage rec {
     sha256 = "sha256-yn53zbBVuiaD31sIB6qxweEgy+AsjzXZ0yk9lNva6mM=";
   };
 
-  # build_lazy_extractors assumes this directory exists but it is not present in
-  # the PyPI package
-  postPatch = ''
-    mkdir -p ytdlp_plugins/extractor
-  '';
-
   propagatedBuildInputs = [ websockets mutagen ]
     ++ lib.optional hlsEncryptedSupport pycryptodome;