Add 'python-jellyfin-apiclient/' from commit 'f096f183fe78d0efd8415089d3b757cf5acf49ea'

git-subtree-dir: python-jellyfin-apiclient
git-subtree-mainline: 3c284b46be
git-subtree-split: f096f183fe
This commit is contained in:
2022-08-28 20:14:32 +02:00
2 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
# Maintainer: Marius Lindvall <(firstname) {cat} varden {dog} info>
pkgname=python-jellyfin-apiclient
pkgver='1.8.1'
pkgrel=1
pkgdesc="Python API client for Jellyfin"
arch=('any')
url='https://github.com/iwalton3/jellyfin-apiclient-python'
license=('GPL3')
depends=('python>=3.6' 'python-requests' 'python-urllib3' 'python-websocket-client' 'python-six' 'python-certifi')
makedepends=('python-setuptools')
source=("https://pypi.python.org/packages/source/j/jellyfin-apiclient-python/jellyfin-apiclient-python-$pkgver.tar.gz")
sha256sums=('b765e667baecad9abde37973443aeacec63f76314d8c56e4118787780d805622')
build() {
cd "${srcdir}/jellyfin-apiclient-python-${pkgver}"
python setup.py build
}
package() {
cd "${srcdir}/jellyfin-apiclient-python-${pkgver}"
python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
}