Files
nixpkgs/pkgs/development/python-modules/httpx-socks/default.nix
T
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

78 lines
1.3 KiB
Nix

{ lib
, async-timeout
, buildPythonPackage
, curio
, fetchFromGitHub
, flask
, httpcore
, httpx
, hypercorn
, pytest-asyncio
, pytest-trio
, pytestCheckHook
, python-socks
, pythonOlder
, sniffio
, starlette
, trio
, yarl
}:
buildPythonPackage rec {
pname = "httpx-socks";
version = "0.7.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "romis2012";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-HwLJ2pScgiNmM/l14aKp47MMuGW1qSaIq7ujpCSRtqA=";
};
propagatedBuildInputs = [
httpx
httpcore
python-socks
];
passthru.optional-dependencies = {
asyncio = [
async-timeout
];
trio = [
trio
];
};
nativeCheckInputs = [
flask
hypercorn
pytest-asyncio
pytest-trio
pytestCheckHook
starlette
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 ];
};
}