375b0a33b2
Separates tests out into a separate attribute to resolve infinite recursion problems with httpx/httpcore.
77 lines
1.2 KiB
Nix
77 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, callPackage
|
|
, fetchFromGitHub
|
|
, asgiref
|
|
, click
|
|
, colorama
|
|
, h11
|
|
, httptools
|
|
, python-dotenv
|
|
, pyyaml
|
|
, requests
|
|
, typing-extensions
|
|
, uvloop
|
|
, watchgod
|
|
, websockets
|
|
, wsproto
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "uvicorn";
|
|
version = "0.14.0";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "encode";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "164x92k3rs47ihkmwq5av396576dxp4rzv6557pwgc1ign2ikqy1";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"testsout"
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
asgiref
|
|
click
|
|
colorama
|
|
h11
|
|
httptools
|
|
python-dotenv
|
|
pyyaml
|
|
uvloop
|
|
watchgod
|
|
websockets
|
|
wsproto
|
|
] ++ lib.optionals (pythonOlder "3.8") [
|
|
typing-extensions
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir $testsout
|
|
cp -R tests $testsout/tests
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"uvicorn"
|
|
];
|
|
|
|
# check in passthru.tests.pytest to escape infinite recursion with httpx/httpcore
|
|
doCheck = false;
|
|
|
|
passthru.tests = {
|
|
pytest = callPackage ./tests.nix { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.uvicorn.org/";
|
|
description = "The lightning-fast ASGI server";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ wd15 ];
|
|
};
|
|
}
|