diff options
author | Josef Schlehofer <pepe.schlehofer@gmail.com> | 2019-04-05 20:50:57 +0200 |
---|---|---|
committer | Josef Schlehofer <pepe.schlehofer@gmail.com> | 2019-04-07 14:34:06 +0200 |
commit | 62c53ccf09b1576201bad88ba918cd66f1eaa372 (patch) | |
tree | 32d2f9cfafef3b460f132452d17946097a1c0100 /lang | |
parent | b406e24e028fcc2a434d695e1f23a3be98375680 (diff) |
python-voluptuous-serialize: add dependency for voluptuous
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Diffstat (limited to 'lang')
-rw-r--r-- | lang/python/python-voluptuous-serialize/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lang/python/python-voluptuous-serialize/Makefile b/lang/python/python-voluptuous-serialize/Makefile index 401ed25a3..d29db7e67 100644 --- a/lang/python/python-voluptuous-serialize/Makefile +++ b/lang/python/python-voluptuous-serialize/Makefile @@ -9,9 +9,9 @@ include $(TOPDIR)/rules.mk PKG_NAME:=voluptuous-serialize PKG_VERSION:=2.1.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 -PKG_SOURCE:=voluptuous-serialize-$(PKG_VERSION).tar.gz +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/source/v/voluptuous-serialize/ PKG_HASH:=d30fef4f1aba251414ec0b315df81a06da7bf35201dcfb1f6db5253d738a154f @@ -28,7 +28,9 @@ define Package/python3-voluptuous-serialize SUBMENU:=Python TITLE:=Python Voluptuous Serialize URL:=https://github.com/balloob/voluptuous-serialize - DEPENDS:=+python3-light + DEPENDS:= \ + +python3-light \ + +python3-voluptuous VARIANT:=python3 endef |