package/python-pyspnego: new package

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Yegor Yefremov 2022-11-23 10:35:37 +01:00 committed by Thomas Petazzoni
parent 338375d88d
commit 4eb1dde125
4 changed files with 29 additions and 0 deletions

View File

@ -1212,6 +1212,7 @@ menu "External python modules"
source "package/python-pysnmp/Config.in"
source "package/python-pysnmp-mibs/Config.in"
source "package/python-pysocks/Config.in"
source "package/python-pyspnego/Config.in"
source "package/python-pytablereader/Config.in"
source "package/python-pytablewriter/Config.in"
source "package/python-pytest/Config.in"

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_PYSPNEGO
bool "python-pyspnego"
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS # python-cryptography
select BR2_PACKAGE_PYTHON_CRYPTOGRAPHY # runtime
help
Windows Negotiate Authentication Client and Server.
https://github.com/jborean93/pyspnego

View File

@ -0,0 +1,6 @@
# md5, sha256 from https://pypi.org/pypi/pyspnego/json
md5 67114f5e59c6d5b45fe2b38c128c2140 pyspnego-0.6.3.tar.gz
sha256 6060a0e683171090adcf92c9d319ddd334f15117fa199a703d8c9bd094d9f6c0 pyspnego-0.6.3.tar.gz
# Locally computed
sha256 286517c93031c343f809f64b38563a783614b762e1367242af6cdd4107335471 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-pyspnego
#
################################################################################
PYTHON_PYSPNEGO_VERSION = 0.6.3
PYTHON_PYSPNEGO_SOURCE = pyspnego-$(PYTHON_PYSPNEGO_VERSION).tar.gz
PYTHON_PYSPNEGO_SITE = https://files.pythonhosted.org/packages/ba/13/7b4e7dcff1eb24a13e0a631a4b49eab361678e4490d691c03253ae736da4
PYTHON_PYSPNEGO_SETUP_TYPE = setuptools
PYTHON_PYSPNEGO_LICENSE = MIT
PYTHON_PYSPNEGO_LICENSE_FILES = LICENSE
$(eval $(python-package))