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:
parent
6bc5957714
commit
442bd5b4d1
1 changed files with 2 additions and 2 deletions
|
@ -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" ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue