1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2025-06-05 22:19:21 +02:00

Add python-tutubo package and dependencies

This commit is contained in:
Peter Steenbergen
2021-11-01 16:09:23 +01:00
parent cc0b218abc
commit 7ec23074b4
11 changed files with 81 additions and 0 deletions

View File

@ -0,0 +1,10 @@
config BR2_PACKAGE_PYTHON_TUTUBO
bool "python-tutubo"
select BR2_PACKAGE_PYTHON_BS4 # runtime
select BR2_PACKAGE_PYTHON_PYTUBE # runtime
select BR2_PACKAGE_PYTHON_REQUESTS # runtime
select BR2_PACKAGE_PYTHON_YTMUSICAPI # runtime
help
wrapper around pytube with some new functionality.
https://github.com/OpenJarbas/tutubo

View File

@ -0,0 +1,3 @@
# md5, sha256 from https://pypi.org/pypi/tutubo/json
md5 c44e6f95dcaf03112f775a1352236beb tutubo-0.0.1a3.tar.gz
sha256 9c1aa388f8f42f25f9afa562b38261be923c9f4c8aff1c0f9412c692ddb06aa4 tutubo-0.0.1a3.tar.gz

View File

@ -0,0 +1,13 @@
################################################################################
#
# python-tutubo
#
################################################################################
PYTHON_TUTUBO_VERSION = 0.0.1a3
PYTHON_TUTUBO_SOURCE = tutubo-$(PYTHON_TUTUBO_VERSION).tar.gz
PYTHON_TUTUBO_SITE = https://files.pythonhosted.org/packages/3b/b3/1d9c5a70b5ab05a256995919b464914a2df33a59c2ad6958701e852206cf
PYTHON_TUTUBO_SETUP_TYPE = setuptools
PYTHON_TUTUBO_LICENSE = Apache
$(eval $(python-package))