Merge pull request #198212 from marsam/update-tubeup

python310Packages.tubeup: 0.0.33 -> 0.0.34
This commit is contained in:
Mario Rodas 2022-10-28 07:21:31 -05:00 committed by GitHub
commit 448a599c49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,19 +9,19 @@
buildPythonPackage rec {
pname = "tubeup";
version = "0.0.33";
version = "0.0.34";
format = "setuptools";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-RFM0vZeA5PDXf9KzlJ8RTSfM7bz50bpwwszU0gjV1DY=";
sha256 = "ae1e606b243fd70742f8b5871c497628d258ee9f416caa46544aca9a5fbfbca0";
};
postPatch = ''
substituteInPlace setup.py \
--replace "docopt==0.6.2" "docopt" \
--replace "internetarchive==2.0.3" "internetarchive"
--replace "docopt==0.6.2" "docopt"
'';
propagatedBuildInputs = [ internetarchive docopt yt-dlp ];