375b0a33b2
Separates tests out into a separate attribute to resolve infinite recursion problems with httpx/httpcore.
41 lines
563 B
Nix
41 lines
563 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, uvicorn
|
|
, httpx
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, pytest-mock
|
|
, requests
|
|
, trustme
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "uvicorn-tests";
|
|
inherit (uvicorn) version;
|
|
|
|
src = uvicorn.testsout;
|
|
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
checkInputs = [
|
|
uvicorn
|
|
httpx
|
|
pytestCheckHook
|
|
pytest-asyncio
|
|
pytest-mock
|
|
requests
|
|
trustme
|
|
];
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
disabledTests = [
|
|
"test_supported_upgrade_request"
|
|
"test_invalid_upgrade"
|
|
];
|
|
}
|
|
|