git » python-secretstorage.git » commit e479c15

fix dependencies

author Filipe Laíns
2018-08-20 23:01:34 UTC
committer Filipe Laíns
2018-08-20 23:01:34 UTC
parent a77a66d4e8ff8d77c458b75c1cf5a0757cedadc0

fix dependencies

PKGBUILD +3 -3

diff --git a/PKGBUILD b/PKGBUILD
index fbfe3b6..c7b148e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,7 +7,7 @@ pkgbase=python-secretstorage
 _pkgname=SecretStorage
 pkgname=(python-secretstorage python2-secretstorage)
 pkgver=3.0.1
-pkgrel=3
+pkgrel=4
 pkgdesc="Securely store passwords and other private data using the SecretService DBus API"
 arch=('any')
 url="https://github.com/mitya57/secretstorage"
@@ -42,7 +42,7 @@ check() {
 }
 
 package_python-secretstorage() {
-  depends=('python')
+  depends=('python-cryptography' 'python-jeepney')
   cd $_pkgname-$pkgver
 
   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
@@ -50,7 +50,7 @@ package_python-secretstorage() {
 }
 
 package_python2-secretstorage() {
-  depends=('python2')
+  depends=('python2-cryptography')
   cd $_pkgname-$pkgver-py2
 
   python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build