summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Joram2022-03-31 18:06:45 +0300
committerPhilipp Joram2022-03-31 18:06:45 +0300
commit664388bf6a3d923132df1f5e225214fbfb1bd91a (patch)
treee67234c3e2094137122bece1a63cfa8f5a10b48a
parentae739874ef3676964883c53a863ef5396d49ff69 (diff)
downloadaur-664388bf6a3d923132df1f5e225214fbfb1bd91a.tar.gz
Add missing dependencies `python-dateutil` and `python-dacite`
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD8
2 files changed, 9 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 035ef6b591ae..3290b4a23cfb 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,14 @@
pkgbase = python-soundcloud-v2
pkgdesc = Python wrapper for the v2 SoundCloud API
pkgver = 1.3.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/7x11x13/soundcloud.py
arch = any
license = MIT
makedepends = python-setuptools
depends = python
+ depends = python-dateutil
+ depends = python-dacite
conflicts = python-soundcloud
source = https://files.pythonhosted.org/packages/source/s/soundcloud-v2/soundcloud-v2-1.3.0.tar.gz
sha512sums = 70fa57dd5f77438806fd5b5ce56cc7330b4a41e00f989d0c097998e90f62de3080d1e03d36d9234d2aaf5537df544e2f07ecc03b69873080f9594126e53e91a4
diff --git a/PKGBUILD b/PKGBUILD
index 98bf642e8376..1eb8cf1ec759 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,12 +3,16 @@
pkgname='python-soundcloud-v2'
_name=${pkgname#python-}
pkgver=1.3.0
-pkgrel=1
+pkgrel=2
pkgdesc="Python wrapper for the v2 SoundCloud API"
url="https://github.com/7x11x13/soundcloud.py"
arch=('any')
license=('MIT')
-depends=('python')
+depends=(
+ 'python'
+ 'python-dateutil'
+ 'python-dacite'
+)
makedepends=('python-setuptools')
conflicts=('python-soundcloud')
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz")