3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.youtube-dl: disable tests

This commit is contained in:
Frederik Rietdijk 2016-01-25 19:09:38 +01:00
parent 93f62fcf0b
commit ef4f65293b

View file

@ -11,7 +11,8 @@
buildPythonPackage rec {
name = "youtube-dl-2016.01.01";
name = "youtube-dl-${version}";
version = "2016.01.01";
src = fetchurl {
url = "http://yt-dl.org/downloads/${stdenv.lib.getVersion name}/${name}.tar.gz";
@ -24,6 +25,9 @@ buildPythonPackage rec {
postInstall = stdenv.lib.optionalString (ffmpeg != null)
''wrapProgram $out/bin/youtube-dl --prefix PATH : "${ffmpeg}/bin"'';
# Requires network
doCheck = false;
meta = with stdenv.lib; {
homepage = http://rg3.github.io/youtube-dl/;
repositories.git = https://github.com/rg3/youtube-dl.git;