blob: da8d158992e22fb3a52d0b1142ecfe4f6449d5c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{13..14} )
inherit distutils-r1
DESCRIPTION="Python bindings for curl-impersonate"
HOMEPAGE="https://github.com/lexiforest/curl_cffi"
SRC_URI="https://github.com/lexiforest/curl_cffi/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/curl_cffi-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
net-misc/curl-impersonate
dev-python/cffi[${PYTHON_USEDEP}]
dev-python/websockets[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/httpx[${PYTHON_USEDEP}]
dev-python/litestar[${PYTHON_USEDEP}]
dev-python/proxy-py[${PYTHON_USEDEP}]
dev-python/trustme[${PYTHON_USEDEP}]
dev-python/uvicorn[${PYTHON_USEDEP}]
)
"
python_prepare_all() {
export IMPERSONATE_LINK_TYPE="dynamic"
export IMPERSONATE_BUILD_DIR="${EROOT}/usr/lib64"
sed -e 's#"curl/curl.h"#"curl-impersonate/curl.h"#' \
-i ffi/shim.h || die
sed -e '/^download_libcurl/d' \
-e "s#str(libdir / \"include\")#\"${EROOT}/usr/include\"#" \
-i scripts/build.py || die
distutils-r1_python_prepare_all
}
EPYTEST_DESELECT=(
"tests/integration/test_real_world.py::test_post_with_no_body"
"tests/integration/test_response_class.py::test_custom_response"
"tests/integration/test_response_class.py::test_default_response"
"tests/pro/test_fp_verify.py::test_live_fingerprint_data_matches_runtime_output"
"tests/pro/test_fp_verify.py::test_live_http3_fingerprint_data_matches_runtime_output"
"tests/unittest/test_async.py::test_add_handle"
"tests/unittest/test_async.py::test_socket_action"
"tests/unittest/test_async_session.py::test_update_params"
)
EPYTEST_IGNORE=(
"tests/integration/test_fingerprints.py"
"tests/integration/test_httpbin.py"
"tests/threads/test_eventlet.py"
"tests/threads/test_gevent.py"
"tests/unittest/test_smoke.py"
"tests/unittest/test_upload.py"
)
EPYTEST_PLUGINS=( pytest-asyncio )
distutils_enable_tests pytest
python_test() {
cp "${BUILD_DIR}/install$(python_get_sitedir)/curl_cffi/"*.so curl_cffi || die
epytest
}
|