fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
81 lines
1.4 KiB
Nix
81 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
async-timeout,
|
|
buildPythonPackage,
|
|
curio,
|
|
fetchFromGitHub,
|
|
flask,
|
|
httpcore,
|
|
httpx,
|
|
hypercorn,
|
|
pytest-asyncio,
|
|
pytest-trio,
|
|
pytestCheckHook,
|
|
python-socks,
|
|
pythonOlder,
|
|
setuptools,
|
|
sniffio,
|
|
starlette,
|
|
tiny-proxy,
|
|
trio,
|
|
trustme,
|
|
yarl,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "httpx-socks";
|
|
version = "0.9.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "romis2012";
|
|
repo = "httpx-socks";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-9v5DfxEtM7jq+b8wR0M1klTSnSdFjQ4aDl8ZSZWxbFA=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [
|
|
httpx
|
|
httpcore
|
|
python-socks
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
asyncio = [ async-timeout ];
|
|
trio = [ trio ];
|
|
};
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
nativeCheckInputs = [
|
|
flask
|
|
hypercorn
|
|
pytest-asyncio
|
|
pytest-trio
|
|
pytestCheckHook
|
|
starlette
|
|
tiny-proxy
|
|
trustme
|
|
yarl
|
|
];
|
|
|
|
pythonImportsCheck = [ "httpx_socks" ];
|
|
|
|
disabledTests = [
|
|
# Tests don't work in the sandbox
|
|
"test_proxy"
|
|
"test_secure_proxy"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Proxy (HTTP, SOCKS) transports for httpx";
|
|
homepage = "https://github.com/romis2012/httpx-socks";
|
|
changelog = "https://github.com/romis2012/httpx-socks/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|