Merge pull request #234709 from marsam/update-tubeup

python310Packages.tubeup: 0.0.35 -> 28.5.2023

authored by

Mario Rodas and committed by
GitHub
a402c8ff 4295779f

+12 -8
+12 -8
pkgs/development/python-modules/tubeup/default.nix
··· 6 , docopt 7 , pythonOlder 8 , urllib3 9 }: 10 11 buildPythonPackage rec { 12 pname = "tubeup"; 13 - version = "0.0.35"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 - sha256 = "006aea68bb8d967a7427c58ee7862e3f2481dae667c2bbcfb1a1f2fd80e665d1"; 21 }; 22 23 - postPatch = '' 24 - substituteInPlace setup.py \ 25 - --replace "internetarchive==3.0.2" "internetarchive" \ 26 - --replace "urllib3==1.26.13" "urllib3" \ 27 - --replace "docopt==0.6.2" "docopt" 28 - ''; 29 30 propagatedBuildInputs = [ 31 internetarchive 32 docopt 33 urllib3 34 yt-dlp 35 ]; 36 37 pythonImportsCheck = [
··· 6 , docopt 7 , pythonOlder 8 , urllib3 9 + , pythonRelaxDepsHook 10 }: 11 12 buildPythonPackage rec { 13 pname = "tubeup"; 14 + version = "28.5.2023"; 15 format = "setuptools"; 16 17 disabled = pythonOlder "3.7"; 18 19 src = fetchPypi { 20 inherit pname version; 21 + sha256 = "sha256-wsYap8OspTPW3BBtFF3a2oyRgmu3W/dywbkFuNjvzhg="; 22 }; 23 24 + nativeBuildInputs = [ 25 + pythonRelaxDepsHook 26 + ]; 27 28 propagatedBuildInputs = [ 29 internetarchive 30 docopt 31 urllib3 32 yt-dlp 33 + ]; 34 + 35 + pythonRelaxDeps = [ 36 + "internetarchive" 37 + "urllib3" 38 + "docopt" 39 ]; 40 41 pythonImportsCheck = [