python3Packages.tubeup: unbreak wrong youtube dep

There are two packages used to download from youtube:
youtube-dl and youtube-dlc, this packaged was using the
wrong one
This commit is contained in:
freezeboy 2020-11-19 00:12:55 +01:00
parent 6bc5957714
commit 442bd5b4d1

View file

@ -2,7 +2,7 @@
, buildPythonPackage , buildPythonPackage
, internetarchive , internetarchive
, fetchPypi , fetchPypi
, youtube-dl , youtube-dlc
, docopt , docopt
, isPy27 , isPy27
}: }:
@ -22,7 +22,7 @@ buildPythonPackage rec {
substituteInPlace setup.py --replace "docopt==0.6.2" "docopt" substituteInPlace setup.py --replace "docopt==0.6.2" "docopt"
''; '';
propagatedBuildInputs = [ internetarchive docopt youtube-dl ]; propagatedBuildInputs = [ internetarchive docopt youtube-dlc ];
pythonImportsCheck = [ "tubeup" ]; pythonImportsCheck = [ "tubeup" ];