mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
44 lines
706 B
Nix
44 lines
706 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, click
|
|
, h11
|
|
, httptools
|
|
, uvloop
|
|
, websockets
|
|
, wsproto
|
|
, isPy27
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "uvicorn";
|
|
version = "0.8.4";
|
|
disabled = isPy27;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1l8rfm30inx9pma893i7sby9h7y910k58841zqaajksn563b882k";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
click
|
|
h11
|
|
httptools
|
|
uvloop
|
|
websockets
|
|
wsproto
|
|
];
|
|
|
|
checkPhase = ''
|
|
$out/bin/uvicorn --help
|
|
'';
|
|
|
|
patches = [ ./setup.patch ];
|
|
|
|
meta = with lib; {
|
|
homepage = https://www.uvicorn.org/;
|
|
description = "The lightning-fast ASGI server";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ wd15 ];
|
|
};
|
|
}
|