nixpkgs/pkgs/development/python-modules/uvicorn/tests.nix
Martin Weinelt 375b0a33b2 python3Packages.uvicorn: 0.13.2 -> 0.14.0
Separates tests out into a separate attribute to resolve infinite
recursion problems with httpx/httpcore.
2021-06-22 13:42:52 +02:00

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"
];
}