forked from mirrors/nixpkgs
pythonPackages.youtube-dl: disable tests
This commit is contained in:
parent
93f62fcf0b
commit
ef4f65293b
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue