86fac42015
For change log, see [1]. A notable change is that the package changed its HKDF implementation from the python-hkdf package to python-cryptography. See [2]. This commit reflect that change in the runtime dependencies. The python-cryptography was already an indirect dependency; it is now a direct one. [1] https://github.com/magic-wormhole/magic-wormhole/blob/0.13.0/NEWS.md [2] https://github.com/magic-wormhole/magic-wormhole/pull/456 Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15 lines
607 B
Makefile
15 lines
607 B
Makefile
################################################################################
|
|
#
|
|
# python-magic-wormhole
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_MAGIC_WORMHOLE_VERSION = 0.13.0
|
|
PYTHON_MAGIC_WORMHOLE_SOURCE = magic-wormhole-$(PYTHON_MAGIC_WORMHOLE_VERSION).tar.gz
|
|
PYTHON_MAGIC_WORMHOLE_SITE = https://files.pythonhosted.org/packages/cc/e1/75c31ad5db873268ba0750006b3d0e40c30b0ad39e6f58b1e28a28d6de48
|
|
PYTHON_MAGIC_WORMHOLE_SETUP_TYPE = setuptools
|
|
PYTHON_MAGIC_WORMHOLE_LICENSE = MIT
|
|
PYTHON_MAGIC_WORMHOLE_LICENSE_FILES = LICENSE
|
|
|
|
$(eval $(python-package))
|