summary refs log tree commit diff
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2018-06-02 15:18:56 +0200
committerrnhmjoj <rnhmjoj@inventati.org>2018-08-08 02:20:53 +0200
commit873663b6509579e184d7eda12cb9d2365589e124 (patch)
tree03d3ee3164eb7a3277fe91fde19dfd9385b05793
parent62eb7c102f5dba3e5109a8d020b1c964eacbd52a (diff)
downloadnixlib-873663b6509579e184d7eda12cb9d2365589e124.tar
nixlib-873663b6509579e184d7eda12cb9d2365589e124.tar.gz
nixlib-873663b6509579e184d7eda12cb9d2365589e124.tar.bz2
nixlib-873663b6509579e184d7eda12cb9d2365589e124.tar.lz
nixlib-873663b6509579e184d7eda12cb9d2365589e124.tar.xz
nixlib-873663b6509579e184d7eda12cb9d2365589e124.tar.zst
nixlib-873663b6509579e184d7eda12cb9d2365589e124.zip
youtube-dl: use python3
-rw-r--r--pkgs/top-level/all-packages.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 1340020d5b9c..93804e0ea1da 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -19384,9 +19384,9 @@ with pkgs;
 
   yoshimi = callPackage ../applications/audio/yoshimi { };
 
-  youtube-dl = with pythonPackages; toPythonApplication youtube-dl;
+  youtube-dl = with python3Packages; toPythonApplication youtube-dl;
 
-  youtube-dl-light = with pythonPackages; toPythonApplication youtube-dl-light;
+  youtube-dl-light = with python3Packages; toPythonApplication youtube-dl-light;
 
   youtube-viewer = perlPackages.WWWYoutubeViewer;