summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorfunilrys2020-02-19 11:29:44 +0100
committerfunilrys2020-02-19 11:29:44 +0100
commit9ae552afe6c0b2ed553242c14c82fe8e8f6b8cbb (patch)
tree7cd5c8354c1d79c6ef0f3f4bcaedc337bfa29d4a
parentba95fd8752fbe1bacccf7368a89143a61b90a4ee (diff)
downloadaur-9ae552afe6c0b2ed553242c14c82fe8e8f6b8cbb.tar.gz
Fix dependencies
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD9
2 files changed, 10 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 394f488bf235..2452fe306081 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,10 +1,12 @@
pkgbase = python-box
pkgdesc = Advanced Python dictionaries with dot notation access
pkgver = 4.0.4
- pkgrel = 1
- url = https://github.com/cdgriffith/Boxs
+ pkgrel = 2
+ url = https://github.com/cdgriffith/Box
arch = any
license = MIT
+ depends = python-toml
+ depends = python-ruamel-yaml
provides = python-box
source = https://files.pythonhosted.org/packages/source/p/python-box/python-box-4.0.4.tar.gz
sha256sums = 7e1ce38dc153790e304d0b3923dff1d53c9889eaaa8f4cce315bb867b5aee843
diff --git a/PKGBUILD b/PKGBUILD
index 73604b63d5ec..14ba8f288472 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,13 +2,16 @@
pkgname=python-box
pkgver=4.0.4
-pkgrel=1
+pkgrel=2
pkgdesc="Advanced Python dictionaries with dot notation access"
arch=('any')
-url="https://github.com/cdgriffith/Boxs"
+url="https://github.com/cdgriffith/Box"
license=('MIT')
provides=("${pkgname}")
-depends=()
+depends=(
+ 'python-toml'
+ 'python-ruamel-yaml'
+)
source=(
"https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz"
)