mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
python3Packages.uvicorn: fix dependencies
This commit is contained in:
parent
21a6aafb7d
commit
429d234f63
@ -9,9 +9,8 @@
|
||||
, pyyaml
|
||||
, typing-extensions
|
||||
, uvloop
|
||||
, watchgod
|
||||
, watchfiles
|
||||
, websockets
|
||||
, wsproto
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
@ -35,15 +34,17 @@ buildPythonPackage rec {
|
||||
propagatedBuildInputs = [
|
||||
click
|
||||
h11
|
||||
] ++ lib.optionals (pythonOlder "3.8") [
|
||||
typing-extensions
|
||||
];
|
||||
|
||||
passthru.optional-dependencies.standard = [
|
||||
httptools
|
||||
python-dotenv
|
||||
pyyaml
|
||||
uvloop
|
||||
watchgod
|
||||
watchfiles
|
||||
websockets
|
||||
wsproto
|
||||
] ++ lib.optionals (pythonOlder "3.8") [
|
||||
typing-extensions
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
|
@ -1,5 +1,6 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, asgiref
|
||||
, uvicorn
|
||||
, httpx
|
||||
, pytest-asyncio
|
||||
@ -7,6 +8,8 @@
|
||||
, pytest-mock
|
||||
, requests
|
||||
, trustme
|
||||
, watchgod
|
||||
, wsproto
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -19,6 +22,7 @@ buildPythonPackage rec {
|
||||
dontInstall = true;
|
||||
|
||||
checkInputs = [
|
||||
asgiref
|
||||
uvicorn
|
||||
httpx
|
||||
pytestCheckHook
|
||||
@ -26,7 +30,12 @@ buildPythonPackage rec {
|
||||
pytest-mock
|
||||
requests
|
||||
trustme
|
||||
];
|
||||
|
||||
# strictly optional dependencies
|
||||
watchgod
|
||||
wsproto
|
||||
]
|
||||
++ uvicorn.optional-dependencies.standard;
|
||||
|
||||
doCheck = !stdenv.isDarwin;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user