2023-01-15 18:25:14 +03:00
|
|
|
# Copyright 1999-2023 Gentoo Authors
|
2022-02-22 09:31:17 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=8
|
|
|
|
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
2023-06-01 21:12:11 +03:00
|
|
|
PYTHON_COMPAT=( python3_{10..12} )
|
2022-02-22 09:31:17 +03:00
|
|
|
|
|
|
|
inherit distutils-r1
|
|
|
|
|
|
|
|
DESCRIPTION="HTTPS CredSSP authentication with the requests library"
|
2022-08-11 16:27:49 +03:00
|
|
|
HOMEPAGE="
|
|
|
|
https://pypi.org/project/requests-credssp/
|
|
|
|
https://github.com/jborean93/requests-credssp/
|
|
|
|
"
|
|
|
|
SRC_URI="
|
|
|
|
https://github.com/jborean93/${PN}/archive/refs/tags/v${PV}.tar.gz
|
|
|
|
-> ${P}.tar.gz
|
|
|
|
"
|
2022-02-22 09:31:17 +03:00
|
|
|
|
|
|
|
LICENSE="MIT"
|
|
|
|
SLOT="0"
|
2022-11-26 18:50:35 +03:00
|
|
|
KEYWORDS="amd64 ~riscv"
|
2022-02-22 09:31:17 +03:00
|
|
|
|
2022-08-11 16:27:49 +03:00
|
|
|
RDEPEND="
|
|
|
|
dev-python/cryptography[${PYTHON_USEDEP}]
|
2022-02-22 09:31:17 +03:00
|
|
|
dev-python/gssapi[${PYTHON_USEDEP}]
|
|
|
|
dev-python/krb5[${PYTHON_USEDEP}]
|
|
|
|
>=dev-python/pyspnego-0.5.0[${PYTHON_USEDEP}]
|
2022-08-11 16:27:49 +03:00
|
|
|
>=dev-python/requests-2.0.0[${PYTHON_USEDEP}]
|
|
|
|
"
|
2022-02-22 09:31:17 +03:00
|
|
|
|
|
|
|
distutils_enable_tests pytest
|