depot/third_party/nixpkgs/pkgs/development/python-modules/httpx-socks/default.nix

80 lines
1.4 KiB
Nix
Raw Normal View History

{
lib,
async-timeout,
buildPythonPackage,
fetchFromGitHub,
flask,
httpcore,
httpx,
hypercorn,
pytest-asyncio,
pytest-trio,
pytestCheckHook,
python-socks,
pythonOlder,
setuptools,
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 ];
};
}