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,6 @@
config BR2_PACKAGE_PYTHON_PYTUBE
bool "python-pytube"
help
Python 3 library for downloading YouTube Videos.
https://github.com/pytube/pytube

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/pytube/json
md5 b8a02ee533051a5ecfdde60fa1df1af4 pytube-11.0.1.tar.gz
sha256 47643a6ff553cbc4d6be748ff14c9c45f79984e15005adff25d62b18110abe43 pytube-11.0.1.tar.gz
# Locally computed sha256 checksums
sha256 7e12e5df4bae12cb21581ba157ced20e1986a0508dd10d0e8a4ab9a4cf94e85c LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-pytube
#
################################################################################
PYTHON_PYTUBE_VERSION = 11.0.1
PYTHON_PYTUBE_SOURCE = pytube-$(PYTHON_PYTUBE_VERSION).tar.gz
PYTHON_PYTUBE_SITE = https://files.pythonhosted.org/packages/33/0d/51a29deb2046d1d45a8b13e8b5a25307dd2fc3b49f577d5e3e563ab0fbb3
PYTHON_PYTUBE_SETUP_TYPE = setuptools
PYTHON_PYTUBE_LICENSE = The Unlicense (Unlicense)
PYTHON_PYTUBE_LICENSE_FILES = LICENSE
$(eval $(python-package))